message stringlengths 2 45.8k | message_type stringclasses 2
values | message_id int64 0 1 | conversation_id int64 254 108k | cluster float64 3 3 | __index_level_0__ int64 508 217k |
|---|---|---|---|---|---|
Provide tags and a correct Python 3 solution for this coding contest problem.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks hit the road.
We assume that the action takes... | instruction | 0 | 82,151 | 3 | 164,302 |
Tags: binary search, geometry, math
Correct Solution:
```
import math
x1, y1, x2, y2 = map(float, input().split()[:4])
v_max, t = map(float, input().split()[:2])
vx, vy = map(float, input().split()[:2])
wx, wy = map(float, input().split()[:2])
def f(x1, y1, x2, y2, v_max, vx, vy):
low = 0
high = math.hypot(x2... | output | 1 | 82,151 | 3 | 164,303 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks hit the road.
We assume that the action takes... | instruction | 0 | 82,152 | 3 | 164,304 |
Tags: binary search, geometry, math
Correct Solution:
```
f = lambda: map(int, input().split())
a, b, c, d = f()
s, t = f()
vx, vy = f()
ux, uy = f()
def g(m):
vt = min(t, m)
ut = max(0, m - t)
x = c - a - ut * ux - vt * vx
y = d - b - ut * uy - vt * vy
return x * x + y * y > (m * s) ** 2
l, r = 0, ... | output | 1 | 82,152 | 3 | 164,305 |
Provide tags and a correct Python 3 solution for this coding contest problem.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks hit the road.
We assume that the action takes... | instruction | 0 | 82,153 | 3 | 164,306 |
Tags: binary search, geometry, math
Correct Solution:
```
import math
x1, y1, x2, y2 = map(int, input().split(' ')[:4])
u_max, tau = map(int, input().split(' ')[:2])
vx, vy = map(int, input().split(' ')[:2])
wx, wy = map(int, input().split(' ')[:2])
A = (x2 - x1, y2 - y1)
v = (-vx, -vy)
w = (-wx, -wy)
B = (A[0] + tau... | output | 1 | 82,153 | 3 | 164,307 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,154 | 3 | 164,308 |
Yes | output | 1 | 82,154 | 3 | 164,309 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,155 | 3 | 164,310 |
Yes | output | 1 | 82,155 | 3 | 164,311 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,156 | 3 | 164,312 |
Yes | output | 1 | 82,156 | 3 | 164,313 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,157 | 3 | 164,314 |
Yes | output | 1 | 82,157 | 3 | 164,315 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,158 | 3 | 164,316 |
No | output | 1 | 82,158 | 3 | 164,317 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,159 | 3 | 164,318 |
No | output | 1 | 82,159 | 3 | 164,319 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,160 | 3 | 164,320 |
No | output | 1 | 82,160 | 3 | 164,321 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks... | instruction | 0 | 82,161 | 3 | 164,322 |
No | output | 1 | 82,161 | 3 | 164,323 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
problem
Santa Claus came from the sky to JOI town this year as well. Since every house in JOI has children, this Santa Claus must give out presents to every house in JOI. However, this year the... | instruction | 0 | 82,512 | 3 | 165,024 |
No | output | 1 | 82,512 | 3 | 165,025 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
problem
Santa Claus came from the sky to JOI town this year as well. Since every house in JOI has children, this Santa Claus must give out presents to every house in JOI. However, this year the... | instruction | 0 | 82,513 | 3 | 165,026 |
No | output | 1 | 82,513 | 3 | 165,027 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
Piegirl found the red button. You have one last chance to change the inevitable end.
The circuit under the button consists of n nodes, numbered from 0 to n - 1. In order to deactivate the butto... | instruction | 0 | 82,893 | 3 | 165,786 |
No | output | 1 | 82,893 | 3 | 165,787 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The Cybermen and the Daleks have long been the Doctor's main enemies. Everyone knows that both these species enjoy destroying everything they encounter. However, a little-known fact about them i... | instruction | 0 | 83,451 | 3 | 166,902 |
Yes | output | 1 | 83,451 | 3 | 166,903 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The Cybermen and the Daleks have long been the Doctor's main enemies. Everyone knows that both these species enjoy destroying everything they encounter. However, a little-known fact about them i... | instruction | 0 | 83,452 | 3 | 166,904 |
No | output | 1 | 83,452 | 3 | 166,905 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is the constraint on k.
Gildong loves observing animals, so he bought two cameras to take videos of wild animals in a forest. The color of one... | instruction | 0 | 83,521 | 3 | 167,042 |
No | output | 1 | 83,521 | 3 | 167,043 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is the constraint on k.
Gildong loves observing animals, so he bought two cameras to take videos of wild animals in a forest. The color of one... | instruction | 0 | 83,522 | 3 | 167,044 |
No | output | 1 | 83,522 | 3 | 167,045 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is the constraint on k.
Gildong loves observing animals, so he bought two cameras to take videos of wild animals in a forest. The color of one... | instruction | 0 | 83,523 | 3 | 167,046 |
No | output | 1 | 83,523 | 3 | 167,047 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The only difference between easy and hard versions is the constraint on k.
Gildong loves observing animals, so he bought two cameras to take videos of wild animals in a forest. The color of one... | instruction | 0 | 83,524 | 3 | 167,048 |
No | output | 1 | 83,524 | 3 | 167,049 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ... | instruction | 0 | 83,819 | 3 | 167,638 |
Yes | output | 1 | 83,819 | 3 | 167,639 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ... | instruction | 0 | 83,820 | 3 | 167,640 |
Yes | output | 1 | 83,820 | 3 | 167,641 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ... | instruction | 0 | 83,822 | 3 | 167,644 |
Yes | output | 1 | 83,822 | 3 | 167,645 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ... | instruction | 0 | 83,823 | 3 | 167,646 |
No | output | 1 | 83,823 | 3 | 167,647 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ... | instruction | 0 | 83,824 | 3 | 167,648 |
No | output | 1 | 83,824 | 3 | 167,649 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
In the school computer room there are n servers which are responsible for processing several computing tasks. You know the number of scheduled tasks for each server: there are mi tasks assigned ... | instruction | 0 | 83,826 | 3 | 167,652 |
No | output | 1 | 83,826 | 3 | 167,653 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,827 | 3 | 167,654 |
Tags: math
Correct Solution:
```
n, t = (float(x) for x in input().split())
print(n * (1.000000011 ** t))
``` | output | 1 | 83,827 | 3 | 167,655 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,828 | 3 | 167,656 |
Tags: math
Correct Solution:
```
n,m = map(int, input().split())
print(n*1.000000011**m)
``` | output | 1 | 83,828 | 3 | 167,657 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,829 | 3 | 167,658 |
Tags: math
Correct Solution:
```
# print('Hello, Python!')
import math
INCREASE = 1.000000011
n, t = map(int, input().split(' '))
print(n*math.pow(INCREASE, t))
``` | output | 1 | 83,829 | 3 | 167,659 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,830 | 3 | 167,660 |
Tags: math
Correct Solution:
```
a=input()
b=[]
b=a.split()
number=int(b[0])
degree=int(b[1])
res=number*1.000000011**degree
print(res)
``` | output | 1 | 83,830 | 3 | 167,661 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,831 | 3 | 167,662 |
Tags: math
Correct Solution:
```
import math
l = input().split(" ")
n = (int)(l[0])
t = (int)(l[1])
print(n * math.pow(1.000000011, t))
``` | output | 1 | 83,831 | 3 | 167,663 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,832 | 3 | 167,664 |
Tags: math
Correct Solution:
```
n, t = map(int, input().split())
ans = 1.000000011 ** t * n
print(ans)
``` | output | 1 | 83,832 | 3 | 167,665 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,833 | 3 | 167,666 |
Tags: math
Correct Solution:
```
n,t = map(int,input().split())
print(n*pow(1.000000011,t))
``` | output | 1 | 83,833 | 3 | 167,667 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in real time.
Moore's law is the observation that t... | instruction | 0 | 83,834 | 3 | 167,668 |
Tags: math
Correct Solution:
```
n,t=input().split()
n,t=int(n),int(t)
print(n*pow(1.000000011,t))
``` | output | 1 | 83,834 | 3 | 167,669 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,835 | 3 | 167,670 |
Yes | output | 1 | 83,835 | 3 | 167,671 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,836 | 3 | 167,672 |
Yes | output | 1 | 83,836 | 3 | 167,673 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,837 | 3 | 167,674 |
Yes | output | 1 | 83,837 | 3 | 167,675 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,838 | 3 | 167,676 |
Yes | output | 1 | 83,838 | 3 | 167,677 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,839 | 3 | 167,678 |
No | output | 1 | 83,839 | 3 | 167,679 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,840 | 3 | 167,680 |
No | output | 1 | 83,840 | 3 | 167,681 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,841 | 3 | 167,682 |
No | output | 1 | 83,841 | 3 | 167,683 |
Evaluate the correctness of the submitted Python 3 solution to the coding contest problem. Provide a "Yes" or "No" response.
The city administration of IT City decided to fix up a symbol of scientific and technical progress in the city's main square, namely an indicator board that shows the effect of Moore's law in re... | instruction | 0 | 83,842 | 3 | 167,684 |
No | output | 1 | 83,842 | 3 | 167,685 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,889 | 3 | 167,778 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
from sys import stdin, stdout
import math
def dist(x,y):
return ((x[0]-y[0])**2+(x[1]-y[1])**2)**0.5
# Is b inside a
def inside(a,b):
if dist(b,a)<a[2]:
return True
else:
return False
n = int(stdin.readline().rstrip(... | output | 1 | 83,889 | 3 | 167,779 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,890 | 3 | 167,780 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
import sys
input = sys.stdin.readline
from collections import *
from math import pi
def contain(i, j):
xi, yi, ri = xyr[i]
xj, yj, rj = xyr[j]
if ri<rj:
return False
d2 = (xi-xj)**2+(yi-yj)**2
return d2<=... | output | 1 | 83,890 | 3 | 167,781 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,891 | 3 | 167,782 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
n = int(input())
d = [1] * n
p = [[] for i in range(n)]
def f():
x, y, r = map(int, input().split())
return r * r, x, y
t = sorted(f() for i in range(n))
for i in range(n):
r, x, y = t[i]
for j in range(i + 1, n):
s, a... | output | 1 | 83,891 | 3 | 167,783 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,892 | 3 | 167,784 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
import sys
input = sys.stdin.buffer.readline
from math import pi
n = int(input())
circles = [list(map(int,input().split())) for i in range(n)]
circles.sort(key = lambda x : -x[2])
mx = 0
groups = []
pars = []
for i in range(n):
x,y,r = circ... | output | 1 | 83,892 | 3 | 167,785 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,893 | 3 | 167,786 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
import sys
def inside(a,b):
return ((a[0]-b[0])**2 + (a[1]-b[1])**2) < (a[2]+b[2])**2
def main():
pi = 3.14159265358979323
n = int(sys.stdin.readline())
a = []
p = [-1]*n
for i in range(n):
x,y,r = map(int,sys.st... | output | 1 | 83,893 | 3 | 167,787 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,894 | 3 | 167,788 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
s = 0
t = [list(map(int, input().split())) for i in range(int(input()))]
f = lambda b: a[2] < b[2] and (a[0] - b[0]) ** 2 + (a[1] - b[1]) ** 2 <= (a[2] - b[2]) ** 2
for a in t:
k = sum(f(b) for b in t)
s += (-1, 1)[(k < 1) + k & 1] * a[2] ... | output | 1 | 83,894 | 3 | 167,789 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,895 | 3 | 167,790 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
from collections import namedtuple
from math import hypot, pi
def contains(fst, scd):
return hypot(fst.x - scd.x, fst.y - scd.y) < fst.r
def area(circle):
return pi * circle.r ** 2
def find_prev(side, circle):
for prev in reverse... | output | 1 | 83,895 | 3 | 167,791 |
Provide tags and a correct Python 3 solution for this coding contest problem.
The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it?
The discotheque can be seen as an infinite xy-plane, in which there are a total of n dancers. Once someone sta... | instruction | 0 | 83,896 | 3 | 167,792 |
Tags: dfs and similar, dp, geometry, greedy, trees
Correct Solution:
```
import math
class circ:
def __init__(self, x, y, r):
self.x = x*1.0
self.y = y*1.0
self.r = r*1.0
n = 0
n = int(input())
vec = []
for i in range(n):
st = input().split(' ')
a = int(st[0])
b = int(st[1])
c = int(st[2])
vec.append(cir... | output | 1 | 83,896 | 3 | 167,793 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.