problem_id
stringlengths 6
6
| user_id
stringlengths 10
10
| time_limit
float64 1k
8k
| memory_limit
float64 262k
1.05M
| problem_description
stringlengths 48
1.55k
| codes
stringlengths 35
98.9k
| status
stringlengths 28
1.7k
| submission_ids
stringlengths 28
1.41k
| memories
stringlengths 13
808
| cpu_times
stringlengths 11
610
| code_sizes
stringlengths 7
505
|
---|---|---|---|---|---|---|---|---|---|---|
p02570 | u217551556 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['dts = input().split()\nif dts[1]*dts[2] >= dts[0]:\n print("Yes")\nelse:\n print("No")', 'dts = input().split()\nif int(dts[1])*int(dts[2]) >= int(dts[0]):\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s303702799', 's729594527'] | [9080.0, 9088.0] | [24.0, 29.0] | [88, 103] |
p02570 | u218757284 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\nb = (d / s - t) >= 0\nif b:\n print("Yes")\nelse:\n print("No")', 'd, t, s = map(int, input().split())\nb = (t - d / s) >= 0\nif b:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s119373511', 's736750485'] | [9156.0, 9152.0] | [29.0, 31.0] | [97, 97] |
p02570 | u228288852 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['a=input().split()\nif int(a[0])>int(a[1])*int(a[2]):\n print("No")\nelse:\nprint("Yes")', 'a=input().split()\nif int(a[0])>int(a[1])*int(a[2]):\n print("No")\nelse:\n print("Yes")'] | ['Runtime Error', 'Accepted'] | ['s715711923', 's137248479'] | [9000.0, 9116.0] | [26.0, 28.0] | [84, 86] |
p02570 | u235053098 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['import sys\ninput = sys.stdin.readline\n\nnum = int(input())\nan = list(map(int, input().split()))\n\nans = 0\n\nfor i in range(len(an)):\n for j in range(len(an)):\n if i < j:\n kake = an[i] * an[j]\n kake %= ((10 ** 9) + 7)\n ans += kake\n \nans %= ((10 ** 9) + 7)\n\nprint(ans)', 'import sys\ninput = sys.stdin.readline\n\nd, t, s = map(int, input().split())\n\nrun = t * s\nif d <= run:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s132357510', 's443505361'] | [9152.0, 9156.0] | [22.0, 25.0] | [283, 135] |
p02570 | u235508145 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D = input()\nT = input()\nS = input()\n\nD = int(D)\nT = int(T)\nS = int(S)\n\nif D/S <= T:\n print(Yes)\nelse:\n print(No)\n ', 'D,T,S = map(int,input.split())\nif D/S <= T:\n print("Yes")\nelse:\n print("No")', 'D,T,S = map(int,input(),slpit())\nif D/S <= T:\n print("Yes")\nelse:\n print("No")\n ', 'd,t,s=map(int,input().split())\nif d/s <= t:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s409900768', 's447741914', 's800651597', 's887049186'] | [8988.0, 9084.0, 8972.0, 9192.0] | [26.0, 25.0, 26.0, 29.0] | [117, 78, 83, 78] |
p02570 | u237634011 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D = int(input())\nT = int(input())\nS = int(input())\n\ntravel_time = D * S\nif travel_time <= T:\n print "yes"\n else: print "no"\n ', 'D = int(input()), T = int(input()), S = int(input())\n\ntravel_time = D * S\nif travel_time <= T:\n print "yes"\n else: print "no"\n ', "d,s,t = map(int,input().split())\nprint('Yes' if d/s <= t else 'No')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s268838716', 's774165166', 's663589347'] | [8960.0, 8892.0, 9136.0] | [27.0, 25.0, 25.0] | [128, 130, 67] |
p02570 | u239368018 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d, t, s = map(int,input())\nprint('Yes' if t*s >=d else 'No')", "d, t, s = map(int,input().split())\nprint('Yes' if t*s >=d else 'No')\n"] | ['Runtime Error', 'Accepted'] | ['s600424033', 's329163002'] | [9140.0, 9084.0] | [27.0, 26.0] | [60, 69] |
p02570 | u242192846 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D, T, S = list(map(input().split()))\n\nif D <= S * T:\n print("Yes")\nelse:\n print("No")\n', 'D, T, S = list(map(int, input().split()))\n\nif D <= S * T:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s822730167', 's403926559'] | [9020.0, 9092.0] | [24.0, 33.0] | [92, 97] |
p02570 | u243733932 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["def main():\n N = int(input())\n As = list(map(int, input().split()))\n\n sum_ = 0\n for i in range(N - 1):\n for j in range(i + 1, N):\n sum_ += ((As[i] % (10 ** 9 + 7)) * (As[j] % (10 ** 9 + 7))) % (10 ** 9 + 7)\n\n sum_ %= 10 ** 9 + 7\n print(sum_)\n\n\nif __name__ == '__main__':\n main()", "def main():\n d, t, s = map(int, input().split())\n if d <= t * s:\n print('Yes')\n else:\n print('No')\n\n\nif __name__ == '__main__':\n main()"] | ['Runtime Error', 'Accepted'] | ['s290690463', 's723465235'] | [9080.0, 9148.0] | [27.0, 25.0] | [317, 161] |
p02570 | u244434589 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['s=input()\nt=input()\na = len(s)\nb = len(t)\nl = []\nfor i in range(a-b+1):\n cnt = 0\n c = s[i,i+t]\n for x, y in zip(c, t):\n if x != y:\n cnt +=1\n l.append(cnt)\nprint(min(l))', "D,T,S=map(int,input().split())\nif S*T >=D:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s117844139', 's155045785'] | [9060.0, 9056.0] | [31.0, 27.0] | [198, 81] |
p02570 | u244466744 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D, T, S = map(int, input().split())\n\ntime = D / S\n\nif time >= T:\n print("Yes")\n\nelse:\n print("No")', 'D, T, S = map(int, input().split())\n\ntime = D / S\n\nif time > T:\n print("No")\n\nelse:\n print("Yes")\n'] | ['Wrong Answer', 'Accepted'] | ['s709841395', 's571106017'] | [9136.0, 9128.0] | [30.0, 28.0] | [100, 100] |
p02570 | u246401133 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['x = int(input())\nif x >= 30:\n print("Yes")\nelse:\n print("No")', 'd, t, s = map(int, input().split())\nprint("Yes" if d <= t * s else "No")'] | ['Runtime Error', 'Accepted'] | ['s883864666', 's931922143'] | [9028.0, 9012.0] | [23.0, 28.0] | [67, 72] |
p02570 | u247581979 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = [int(x) for x in input().split(\' \')]\nif t*s <= d:\n print("Yes")\nelse:\n print("No")', 'd, t, s = [int(x) for x in input().split(\' \')]\nif t*s >= d:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s314722017', 's716389282'] | [9152.0, 9156.0] | [34.0, 33.0] | [98, 98] |
p02570 | u250026974 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D T S = map(int, input().split(" "))\n\nA = S * T\nif A >= D:\n print("Yes")\nelse:\n print("No")', 'D, T, S = map(int, input().split(" "))\n\nA = S * T\nif A >= D:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s453421666', 's798954659'] | [8916.0, 9096.0] | [23.0, 28.0] | [97, 99] |
p02570 | u250366438 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\nif __name__ == "__main__":\n d, t, s = map(int, input().split())\n\n if d / s <= t:\n print(d/s)\n print(\'Yes\')\n else:\n print(\'No\')\n\n', '\nif __name__ == "__main__":\n d, t, s = map(int, input().split())\n\n if d / s < t:\n print(d/s)\n print(\'Yes\')\n else:\n print(\'No\')\n\n', 'if __name__ == "__main__":\n d, t, s = map(int, input().split())\n\n if d / s <= t:\n print(\'Yes\')\n else:\n print(\'No\')\n\n'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s628408449', 's818886335', 's656497501'] | [9172.0, 9180.0, 9132.0] | [26.0, 34.0, 28.0] | [159, 158, 139] |
p02570 | u251075661 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d, t, s = map(int, input().split())\n\nif d / s <= t:\n print('YES')\nelse:\n print('NO')", "d, t, s = map(int, input().split())\n\nif d / s <= t:\n print('YES')\nelse:\n print('NO')", "d, t, s = map(int, input().split())\n\nif d / s <= t:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s072270276', 's542107738', 's859489287'] | [9152.0, 9156.0, 9152.0] | [34.0, 31.0, 30.0] | [86, 86, 86] |
p02570 | u252405453 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['def abc177d():\n n, m = map(int, input().split())\n check = [-1] * n\n pair = []\n group_no = 0\n group = {}\n for i in range(m):\n a, b = map(int, input().split())\n a -= 1\n b -= 1\n if check[a] == check[b]:\n if check[a] == -1:\n group[group_no] = {a, b}\n check[a] = check[b] = group_no\n group_no += 1\n elif check[a] == -1:\n group[check[b]].add(a)\n check[a] = check[b]\n elif check[b] == -1:\n group[check[a]].add(b)\n check[b] = check[a]\n else:\n re = min(check[a], check[b])\n de = max(check[a], check[b])\n for v in group[de]:\n check[v] = re\n group[re] = group[re] | group[de]\n del group[de]\n max_val = 1\n for k in group:\n max_val = max(max_val,len(group[k]))\n print(max_val)\nabc177d()', "def abc177a():\n d, t, s = map(int, input().split())\n if d / s <= t:\n print('Yes')\n else:\n print('No')\n\n\nabc177a()"] | ['Runtime Error', 'Accepted'] | ['s632134894', 's254448193'] | [9240.0, 9152.0] | [26.0, 27.0] | [926, 136] |
p02570 | u261036477 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D,T,S =(int(x) for x in input().split())\nvt = D/S\nif vt<=T:\n print("yes")\nelse:\n print("no")', 'D,T,S =(int(x) for x in input().split())\nvt = D/S\nif vt>=T:\n print("yes")\nelse:\n print("no")', 'D,T,S =(int(x) for x in input().split())\nvt = D/S\nif vt<=T:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s158440671', 's897743441', 's618858278'] | [9040.0, 9144.0, 9156.0] | [32.0, 27.0, 32.0] | [98, 98, 98] |
p02570 | u267933821 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D=int(input())\nT=int(input())\nS=int(input())\nlimit_speed=D/T+D%T\n\nif(limit_speed<=S):\n print("Yes")\nelse:\n print("No")\n', 'd, t, s = list(map(int, input().split(" ")))\n \nmin = d / s\n \nif min <= t:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s532191845', 's817979604'] | [9108.0, 9168.0] | [24.0, 28.0] | [121, 108] |
p02570 | u270851941 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['input_line = list(input().split())\ninput_line = [int(n) for n in input_line]\n\n[D, T, S] = input_line\n\ncondition = D >= T*S\nif condition:\n print("Yes")\nelse:\n print("No")\n', 'input_line = list(input().split())\ninput_line = [int(n) for n in input_line]\n\n[D, T, S] = input_line\nprint(D,T,S)\ncondition = D <= T*S\nif condition:\n print("Yes")\nelse:\n print("No")', 'input_line = list(input().split())\ninput_line = [int(n) for n in input_line]\n \n[D, T, S] = input_line\ncondition = D <= T*S\nif condition:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s011693365', 's508689451', 's019277586'] | [9120.0, 9088.0, 8960.0] | [28.0, 30.0, 27.0] | [176, 187, 175] |
p02570 | u273914730 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["input(D)\ninput(T)\ninput(S)\n\nif T*S>=D:\n print('Yes')\nelse:\n print('No')", "D=int(input())\nT=int(input())\nS=int(input())\n\nif T*S>=D:\n print('Yes')\nelse:\n print('No')", "a=list(map(int,input().split()))\nD=a[0]\nT=a[1]\nS=a[2]\nif T*S>=D:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s162801615', 's942225864', 's736531106'] | [9052.0, 9120.0, 9124.0] | [23.0, 26.0, 25.0] | [73, 91, 99] |
p02570 | u276765287 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["#!/usr/bin/env python\n# coding: utf-8\n\n# In[1]:\n\n\nD, T, S = map(int, input().split())\nif T <= D // S:\n print('Yes')\nelse:\n print('No')\n\n\n# In[ ]:\n\n\n\n\n", "D, T, S = map(int, input().split())\nif T >= D / S:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s651586412', 's567469818'] | [9104.0, 9156.0] | [29.0, 31.0] | [156, 89] |
p02570 | u279570066 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d,t,s =map(int,input().split())\nif d >= t*s:\n print('Yes')\n\nelse:\n print('No')", "d,t,s =map(int,input().split())\nif t*s >= d:\n print('Yes')\n\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s260890449', 's087232278'] | [9156.0, 9156.0] | [28.0, 25.0] | [84, 84] |
p02570 | u280790985 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['import sys\ndef inputt():\n return sys.stdin.readline().strip()\ndef printt(n):\n sys.stdout.write(str(n)+\'\\n\')\ndef listt():\n return [int(i) for i in inputt().split()]\nD,T,S=map(int,input().split())\nif (D/S)<=T:\n printt("YES")\nelse:\n printt("NO")', 'import sys\ndef inputt():\n return sys.stdin.readline().strip()\ndef printt(n):\n sys.stdout.write(str(n)+\'\\n\')\ndef listt():\n return [int(i) for i in inputt().split()]\nD,T,S=map(int,input().split())\nif (D/S)<=T:\n printt("Yes")\nelse:\n printt("No")'] | ['Wrong Answer', 'Accepted'] | ['s669289440', 's612095275'] | [9196.0, 9176.0] | [29.0, 30.0] | [257, 257] |
p02570 | u281861735 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['from sys import stdin,stdout\nfrom collections import defaultdict\nimport math\nfrom bisect import bisect\n#input=stdin.readline\n#def print(x):stdout.write(str(x)+\'\\n\')\nd,t,s=map(int,input().split())\nif s*t<=d:\n print("Yes")\nelse:\n print("No")\n ', 'from sys import stdin,stdout\nfrom collections import defaultdict\nimport math\nfrom bisect import bisect\n#input=stdin.readline\n#def print(x):stdout.write(str(x)+\'\\n\')\nd,t,s=map(int,input().split())\nif s*t>=d:\n print("Yes")\nelse:\n print("No")\n '] | ['Wrong Answer', 'Accepted'] | ['s292352743', 's624278459'] | [9472.0, 9460.0] | [37.0, 34.0] | [250, 250] |
p02570 | u282813849 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['def multmod(a,b,m):\n ans = 0\n a = a % m\n \n while b:\n if (b & 1): \n ans = (ans + a) % m\n \n a = (2 * a) % m\n b >>= 1 # b = b / 2\n \n return ans\n\nn = int(input())\nS = [int(a) for a in input().split()]\ndivisor = 10**9 + 7\ntot = 0\na,b = 0,0\narr_sum = sum(S) \narr_ssq = arr_sum*arr_sum % divisor\nisq_sum = 0\nfor i in range(n):\n isq_sum += S[i]*S[i] \n \n#isq_sum = isq_sum % divisor\ntot = (arr_ssq - isq_sum)//2 % divisor\n\nprint(tot)', 'D,T,S = [int(n) for n in input().split()]\n\nif D/S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s222239902', 's928630676'] | [9204.0, 9156.0] | [30.0, 34.0] | [476, 90] |
p02570 | u290754584 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['# -*- coding: utf-8 -*-\nD, T, S = map(int, input().split())\n\nif D <= T * S:\n print("YES")\nelse:\n print("NO")\n', '# -*- coding: utf-8 -*-\nD, T, S = map(int, input().split())\n\nif D <= T * S:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s260183935', 's906974039'] | [9084.0, 9084.0] | [29.0, 29.0] | [115, 115] |
p02570 | u290784570 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\nans = d/s\nprint(\'Yes\' if ans < float(t) else "No"', 'd, t, s = map(int, input().split())\nans = d/s\nprint(\'Yes\' if ans <= t else "No")'] | ['Runtime Error', 'Accepted'] | ['s473989076', 's597948369'] | [9024.0, 9148.0] | [24.0, 30.0] | [85, 80] |
p02570 | u291028869 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s = map(int,input().split())\nprint(t,d/s)\nif t < d / s:\n print("No")\nelse:\n print("Yes")', 'd,t,s = map(int,input().split())\nif t < d / s:\n print("No")\nelse:\n print("Yes")'] | ['Wrong Answer', 'Accepted'] | ['s282414983', 's018633414'] | [9152.0, 9156.0] | [29.0, 30.0] | [98, 85] |
p02570 | u292746386 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D, T, S = (int(d) for d in input().split())\n\nif T * s >= D:\n print("Yes")\n\nelse:\n print("No")', 'D, T, S = (int(d) for d in input().split())\n\nif T * S >= D:\n print("Yes")\n\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s196748862', 's453965324'] | [9044.0, 9080.0] | [26.0, 27.0] | [99, 99] |
p02570 | u293917550 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s = list(map(int,input().split()))\ntimes = distance/speed\nif times<=t:\n print("Yes")\nelse:\n print("No")', 'd,t,s = list(map(int,input().split()))\ntry:\n times = d/s\nexcept:\n times = t+1\nif times<=t:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s004366976', 's240233021'] | [9112.0, 9160.0] | [28.0, 33.0] | [109, 127] |
p02570 | u297089927 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['n,m=map(int,input().split())\nli=[]\nans=0\nif m!=0: \n for i in range(m):\n a,b=map(int,input().split())\n if len(li)==0:\n li.append([a,b])\n else:\n flag=0\n for j in range(len(li)):\n if a in li[j] and b not in li[j]:\n \tli[j].append(b)\n \tflag=1\n elif a not in li[j] and b in li[j]:\n li[j].append(a)\n flag=1\n elif a in li[j] and b in li[j]:\n break\n elif flag==0 and j==len(li)-1:\n li.append([a,b])\n #print(li)\n ans=max([len(li[i]) for i in range(len(li))])\nprint(ans if m!=0 else 1)\n', 'd,t,s=map(int,input().split())\nprint("Yes" if t*s>=d else "No")'] | ['Runtime Error', 'Accepted'] | ['s576959198', 's360353672'] | [9216.0, 9148.0] | [31.0, 29.0] | [708, 63] |
p02570 | u300141290 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['#coding:utf-8\n\ninput_line = input().split(" ")\nD = int(input_line[0])\nT = int(input_line[1])\nS = int(input_line[2])\n\nif D*S <= T:\n print("Yes")\nelse:\n print("No")\n ', '#coding:utf-8\n\ninput_line = input().split(" ")\nD = int(input_line[0])\nT = int(input_line[1])\nS = int(input_line[2])\n\nif D/S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s468333338', 's783285967'] | [9044.0, 9156.0] | [27.0, 28.0] | [167, 168] |
p02570 | u300651214 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\nif s*t >= d:\n print("YES")\nelse:\n print("No")\n\n', 'd, t, s = map(int, input().split())\nif t * s >= d:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s699380692', 's632567916'] | [9144.0, 9088.0] | [31.0, 28.0] | [99, 86] |
p02570 | u302240043 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['x, y, z = int(input().split())\nif y*z>=x:\n print("Yes")\nelse:\n print("No")', 'x, y, z = [int(a) for a in input().split()]\nif y*z>=x:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s165237923', 's640000817'] | [9080.0, 9016.0] | [22.0, 30.0] | [76, 89] |
p02570 | u302851409 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['arr = list(map(int, input().rstrip().split()))\nD = arr[0]\nT = arr[1]\nS = arr[2]\nif (D/T)>=S:\n print("YES")\nelse:\n print("NO")', 'arr = list(map(int, input().rstrip().split()))\nD = arr[0]\nT = arr[1]\nS = arr[2]\nif (D/T)<=S:\n print("YES",end="")\nelse:\n print("NO",end="")\n', 'arr = list(map(int, input().rstrip().split()))\nD = arr[0]\nT = arr[1]\nS = arr[2]\nif (D/T)<=S:\n print("YES")\nelse:\n print("NO")\n', 'arr = list(map(int, input().rstrip().split()))\nD = arr[0]\nT = arr[1]\nS = arr[2]\nif (D/T)<=S:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s142956130', 's444474486', 's821589547', 's192510904'] | [9160.0, 9036.0, 9148.0, 9152.0] | [30.0, 30.0, 29.0, 36.0] | [127, 142, 128, 128] |
p02570 | u304058693 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['# import numpy as np\n# import itertools as it\n\nn = int(input())\na = list(map(int, input().split()))\n\nres = 0\nfor i in range(n):\n res += a[i] * a[i]\n\nans = sum(a) * sum(a)\nprint(((ans - res)//2) % (10 ** 9 + 7))\n\n\n\n\n\n#print(sum)\n\n# ans = int(sum * np.prod(a))\n\n', 'd, t, s = map(int, input().split())\n\nif d/s <= t:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s869357065', 's652464723'] | [9044.0, 9148.0] | [23.0, 28.0] | [341, 89] |
p02570 | u308409213 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['if D / S <= T:\n print("Yes")\nelse:\n print("No")', 'D, S, T = input().split()\nif int(D) / int(S) <= int(T):\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s504826448', 's522503441'] | [8976.0, 9096.0] | [24.0, 28.0] | [49, 90] |
p02570 | u308914480 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s=map(int,input().split())\nif t<=(s/d):\n print("Yes")\nelse:\n print("No")', 'd,t,s=map(int,input().split())\nif t>=(d/s):\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s568024963', 's524666108'] | [9140.0, 9156.0] | [28.0, 30.0] | [78, 78] |
p02570 | u312078744 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d, t, s = map(int, input().split())\nans = d/float(s)\nif (t >= s):\n\tprint('Yes')\nelse:\n \tprint('No')", "d, t, s = map(int, input().split())\nans = d/float(s)\nif (t >= ans):\n print('Yes')\nelse:\n print('No')\n"] | ['Wrong Answer', 'Accepted'] | ['s988565083', 's338375514'] | [9128.0, 9040.0] | [32.0, 26.0] | [100, 107] |
p02570 | u312821683 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d, t, s = map(int, input().split())\n\nif d / t <= s:\n print('yes')\nelse:\n print('No')", "d, t, s = map(int, input().split())\n\nif d / t <= s:\n result = 'yes'\nelse:\n result = 'No'\n\nprint(result)", "d, t, s = map(int, input().split())\n\nif d <= s * t:\n result = 'yes'\nelse:\n result = 'No'\n\nprint(result)", "d, t, s = map(int, input().split())\n\nif d <= s * t:\n result = 'Yes'\nelse:\n result = 'No'\n\nprint(result)"] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s294215577', 's654097433', 's715993009', 's292183817'] | [8980.0, 9096.0, 9096.0, 9056.0] | [27.0, 30.0, 27.0, 29.0] | [90, 109, 109, 109] |
p02570 | u320763652 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s == map(int, input().split())\n\ntmp = d/s\n\nif tmp <= t:\n print("Yes")\nelse:\n print("No")', 'd,t,s = map(int, input().split())\n\ntmp = d/s\n\nif tmp <= t:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s487944010', 's901238379'] | [9072.0, 9152.0] | [23.0, 32.0] | [98, 97] |
p02570 | u321379724 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["a = list(map(int,input().split()))\nif(a[0]>a[1]*a[2]):\n print('no')\nelse:\n print('yes')", "a = list(map(int,input().split()))\nD = a[0]\nT = a[1]\nS = a[2]\nif(D>S*T):\n print('no')\nelse:\n print('yes')\n", "D,T,S = list(map(int,input().split()))\nif(D>S*T):\n print('no')\nelse:\n print('yes')", "a = list(map(int,input().split()))\nD = a[0]\nT = a[1]\nS = a[2]\nif(D>S*T):\n print('no')\nelse:\n print('yes')", "D,T,S = list(map(int,input().split()))\nif(D>S*T):\n print('No')\nelse:\n print('Yes')"] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s040929733', 's042018902', 's182694120', 's992794218', 's312200343'] | [9120.0, 9036.0, 9168.0, 9148.0, 9096.0] | [28.0, 31.0, 27.0, 28.0, 25.0] | [93, 112, 88, 111, 88] |
p02570 | u322171361 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d,t,s = map(int,input().split())\nif d/s <=t\u3000:\n print('Yes')\nelse:\n print('No')", "d,t,s = map(int,input().split())\nif d/s <=t:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s115899164', 's417788286'] | [9012.0, 9152.0] | [27.0, 31.0] | [82, 79] |
p02570 | u325864493 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D = int(input())\nT = int(input())\nS = int(input())\nif D / S <= T:\n print("Yes")\nelse:\n print("No")', 'D = int(input())\nT = int(input())\nS = int(input())\nif D / S <= T:\n print(Yes)\nelse:\n print(No)', 'D, T, S = map(int, input().split())\nif D / S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s069198223', 's587348211', 's933546200'] | [8956.0, 9088.0, 9116.0] | [22.0, 23.0, 29.0] | [104, 100, 89] |
p02570 | u329730886 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['import numpy as np\nA = np.asarray(input().split()).astype(np.int)\n \nans = 0\nmod = 10**9 + 7\nfor i in range(N):\n pA = (A[i] % mod) * (A[i+1:].sum() % mod)\n ans += pA\n \nprint(int(ans % mod))', "D, T, S = map(int, input().split())\n\nt = D / S\n\nif t <= T:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s926315040', 's584368912'] | [26704.0, 9092.0] | [112.0, 24.0] | [194, 97] |
p02570 | u331255836 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\ndef resolve():\n num = list(map(int, input().split()))\n time = num[0] / num[2]\n if time <= num[1]:\n print("Yes")\n else:\n print("No")', 'list = list(map(int, input().split()))\n\ntime = list[0] / list [2]\n\nif time <= list[1]:\n print("Yes")\n else:\n print("No)', 'num = list(map(int, input().split()))\ntime = num[0] / num[2]\nif time <= num[1]:\n print("Yes")\n else:\n print("No")\n\n', '\ndef resolve():\n num = list(map(int, input().split()))\n time = num[0] / num[2]\n if time <= num[1]:\n print("Yes")\n else:\n print("No")\nresolve()'] | ['Wrong Answer', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s670826224', 's730534098', 's779073871', 's258583248'] | [9024.0, 9020.0, 8880.0, 9060.0] | [33.0, 26.0, 24.0, 26.0] | [158, 121, 120, 168] |
p02570 | u334700364 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\nmeters, minutes, metersPerMinute = map(int, input().split())\n\nwillReach = meters == metersPerMinute * minutes\n\nif willReach:\n print("Yes")\nelse:\n print("No")', '\nmeters, minutes, metersPerMinute = map(int, input().split())\n\nwillReach = meters <= metersPerMinute * minutes\n\nif willReach:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s528501762', 's103747880'] | [9052.0, 9052.0] | [32.0, 29.0] | [164, 164] |
p02570 | u336181117 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s = map(int, input().split())\nif t >= (d / s):\n print("yes")\nelse:\n print("no")', 'd,t,s = map(int,input().split())\nif t >= ( d / s ):\n print("yes")\nelse:\n print("no")', 'd,t,s = map(int,input().split())\nif t >= (d / s):\n\tprint("yes")\nelse:\n\tprint("no")', "i = input().split()\nif float(i[0]) / float(i[2]) < float(i[1]):\n print('yes')\n \nelse:\n print('no')\n", "i = input().split()\nif float(i[0]) / float(i[2]) <= float(i[1]):\n print('yes')\n \nelse:\n print('no')\n", 'd,t,s = map(int,input().split())\nif t >= (d / s):\n print("yes")\nelse:\n print("no")', "d = float(input())\nt = float(input())\ns = float(input())\n \nif d / s < t:\n print('yes')\n \nelse:\n print('no')\n", "d = input()\nt = input()\ns = input()\n\nif d / s < t:\n return 'yes'\n\nelse:\n return 'no'", 'd,t,s = map(int,input().split())\nif (d / s) <= t:\n print("yes")\nelse:\n print("no")\n', 'd,t,s = map(int,input().split())\nif t >= ( d / s ):\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s128422674', 's156017696', 's305802608', 's344133703', 's428802007', 's608514275', 's614457145', 's755555308', 's803518935', 's318025173'] | [9120.0, 9080.0, 9088.0, 9028.0, 9092.0, 9088.0, 8992.0, 8928.0, 9136.0, 9176.0] | [28.0, 33.0, 32.0, 28.0, 28.0, 24.0, 25.0, 29.0, 26.0, 27.0] | [85, 86, 82, 101, 102, 84, 110, 86, 85, 86] |
p02570 | u336794632 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\nd,t,s = map(int, input().split())\nprint(\'Yes\' if d <= t*s else \'No")\n\n\n \n \n', "d,t,s = map(int, input().split())\nprint('Yes' if d <= t*s else 'No')\n\n\n \n \n"] | ['Runtime Error', 'Accepted'] | ['s616513247', 's518877306'] | [8900.0, 9076.0] | [29.0, 29.0] | [78, 77] |
p02570 | u336979293 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d = input().split()\nt,s = map(int,input().split())\n\nif d − s*t < 0:\n print('Yes')\nelse print('No')", "\nd,t,s = map(int,input().split())\n\nif (d − s*t <= 0):\n print('Yes')\nelse :\n print('No')\n", "d = int(input())\nt,s = map(int,input().split())\n\nif d − s*t <= 0:\n print('Yes')\nelse print('No')\n", "d = int(input())\nt,s = map(int,input().split())\n\nif d − s*t <= 0:\n print('Yes')\nelse :\n print('No')\n", "d,t,s = map(int,input().split())\nif (d - s*t <= 0):\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s400169292', 's457664478', 's770045272', 's875059630', 's305525702'] | [9008.0, 8992.0, 9036.0, 8852.0, 8896.0] | [22.0, 25.0, 24.0, 23.0, 32.0] | [101, 92, 100, 104, 86] |
p02570 | u337396147 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['from itertools import combinations\n\ndef main():\n N = int(input())\n A = tuple(map(int, input().split()))\n answer = solve(N, A)\n print(answer)\n\n\ndef solve(N, A):\n return sum(x * y for x, y in combinations(A, 2)) % (10**9 + 7)\n\n\nif __name__ == "__main__":\n main()\n', 'def main():\n D, T, S = map(int, input().split())\n answer = solve(D, T, S)\n print(answer)\n\n\ndef solve(D, T, S):\n return \'Yes\' if D <= S * T else \'No\'\n\n\nif __name__ == "__main__":\n main()\n'] | ['Runtime Error', 'Accepted'] | ['s687078394', 's107208386'] | [9160.0, 9160.0] | [25.0, 34.0] | [279, 201] |
p02570 | u337573893 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['N = int(input())\n\nA = list(map(int, input().split()))\n\nc = 0\n\nfor i in range(N-1):\n for j in range(int(i)+1, N):\n d = A[i] % (10**9+7)\n e = A[j] % (10**9+7)\n f = (d*e) % (10**9+7)\n c += f\n \n\nc = c % (10**9+7)\n\nprint(c)', "d, t, s = map(int, input().split())\n\nc = d / s\n\nif t>=c:\n print('Yes')\nelif t<c:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s646041530', 's268018348'] | [9180.0, 9124.0] | [27.0, 27.0] | [234, 95] |
p02570 | u337626942 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\nif s*t <= d:\n print("Yes")\nelse:\n print("No")', 'd, t, s = map(int, input().split())\nif s*t >= d:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s828953181', 's450827119'] | [9156.0, 9160.0] | [38.0, 36.0] | [87, 87] |
p02570 | u340781749 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["import os\nimport sys\n\nimport numpy as np\n\n\ndef solve(inp):\n RBST_CHILDREN = []\n RBST_VALUES = []\n RBST_COUNTS = []\n RBST_INDICES = []\n RBST_ROOTS = []\n\n def rbst_init():\n lst = [0]\n lst.clear()\n RBST_CHILDREN.append([[0], [0]])\n RBST_VALUES.append([0])\n RBST_COUNTS.append([0])\n RBST_INDICES.append(lst)\n RBST_ROOTS.append(0)\n return len(RBST_ROOTS) - 1\n\n def rbst_merge(ins, left_root, right_root):\n children = RBST_CHILDREN[ins]\n counts = RBST_COUNTS[ins]\n li = left_root\n ri = right_root\n stack = []\n while li != 0 and ri != 0:\n if np.random.randint(counts[li] + counts[ri]) < counts[li]:\n stack.append((li, 1))\n li = children[1][li]\n else:\n stack.append((ri, 0))\n ri = children[0][ri]\n\n i = li if li != 0 else ri\n while stack:\n pi, is_right = stack.pop()\n children[is_right][pi] = i\n counts[pi] = counts[children[0][pi]] + counts[children[1][pi]] + 1\n i = pi\n\n return i\n\n def rbst_split(ins, x, root=-1):\n children = RBST_CHILDREN[ins]\n values = RBST_VALUES[ins]\n counts = RBST_COUNTS[ins]\n if root == -1:\n root = RBST_ROOTS[ins]\n i = root\n l_stack = []\n r_stack = []\n while i != 0:\n if x < values[i]:\n r_stack.append(i)\n i = children[0][i]\n else:\n l_stack.append(i)\n i = children[1][i]\n\n li, ri = 0, 0\n while l_stack:\n pi = l_stack.pop()\n children[1][pi] = li\n counts[pi] = counts[children[0][pi]] + counts[li] + 1\n li = pi\n while r_stack:\n pi = r_stack.pop()\n children[0][pi] = ri\n counts[pi] = counts[ri] + counts[children[1][pi]] + 1\n ri = pi\n\n return li, ri\n\n def rbst_insert(ins, x):\n children = RBST_CHILDREN[ins]\n values = RBST_VALUES[ins]\n counts = RBST_COUNTS[ins]\n indices = RBST_INDICES[ins]\n\n if indices:\n ni = indices.pop()\n children[0][ni] = children[1][ni] = 0\n values[ni] = x\n counts[ni] = 1\n else:\n ni = len(values)\n children[0].append(0)\n children[1].append(0)\n values.append(x)\n counts.append(1)\n\n li, ri = rbst_split(ins, x)\n i = rbst_merge(ins, li, ni)\n i = rbst_merge(ins, i, ri)\n RBST_ROOTS[ins] = i\n\n def rbst_delete(ins, x):\n children = RBST_CHILDREN[ins]\n counts = RBST_COUNTS[ins]\n indices = RBST_INDICES[ins]\n\n li, mri = rbst_split(ins, x - 1)\n mi, ri = rbst_split(ins, x, mri)\n\n if mi == 0:\n RBST_ROOTS[ins] = rbst_merge(ins, li, ri)\n return\n\n if counts[mi] == 1:\n indices.append(mi)\n RBST_ROOTS[ins] = rbst_merge(ins, li, ri)\n return\n\n i = mi\n stack = []\n while i != 0:\n if children[0][i] != 0 and children[1][i] != 0:\n to_right = 1 if counts[children[0][i]] < counts[children[1][i]] else 0\n stack.append((i, to_right))\n i = children[to_right][i]\n else:\n if children[0][i] != 0:\n if stack:\n pi, is_right = stack[-1]\n children[is_right][pi] = children[0][i]\n else:\n mi = children[0][i]\n elif children[1][i] != 0:\n if stack:\n pi, is_right = stack[-1]\n children[is_right][pi] = children[1][i]\n else:\n mi = children[1][i]\n else:\n pi, is_right = stack[-1]\n children[is_right][pi] = 0\n break\n\n indices.append(i)\n while stack:\n pi, _ = stack.pop()\n counts[pi] -= 1\n\n i = rbst_merge(ins, li, mi)\n i = rbst_merge(ins, i, ri)\n\n RBST_ROOTS[ins] = i\n\n def rbst_lower_bound(ins, x, default):\n children = RBST_CHILDREN[ins]\n values = RBST_VALUES[ins]\n counts = RBST_COUNTS[ins]\n i = RBST_ROOTS[ins]\n y = default\n c = counts[i]\n j = 0\n while i != 0:\n if x <= values[i]:\n y = values[i]\n c = j + counts[children[0][i]]\n i = children[0][i]\n else:\n j += counts[children[0][i]] + 1\n i = children[1][i]\n return y, c\n\n def rbst_get_k_th(ins, k, default):\n children = RBST_CHILDREN[ins]\n values = RBST_VALUES[ins]\n counts = RBST_COUNTS[ins]\n i = RBST_ROOTS[ins]\n\n if counts[i] <= k:\n return default\n j = k\n while i != 0:\n left_count = counts[children[0][i]]\n if left_count == j:\n return values[i]\n elif left_count > j:\n i = children[0][i]\n else:\n j -= left_count + 1\n i = children[1][i]\n return default\n\n h = inp[0]\n w = inp[1]\n aaa = inp[2::2]\n bbb = inp[3::2]\n\n ins1 = rbst_init()\n ins2 = rbst_init()\n INF = 10 ** 18\n\n for i in range(1, w + 1):\n rbst_insert(ins1, i)\n rbst_insert(ins2, 0)\n rbst_insert(ins1, INF)\n rbst_insert(ins2, INF)\n\n moves = np.zeros(w + 1, dtype=np.int64)\n ans = np.full(h, -1, dtype=np.int64)\n\n for row in range(h):\n a = aaa[row]\n b = bbb[row]\n c, _ = rbst_lower_bound(ins1, a, INF)\n stack = []\n while c <= b + 1:\n stack.append(c)\n c, _ = rbst_lower_bound(ins1, c + 1, INF)\n\n if len(stack) == 0:\n ans[row] = row + 1 + rbst_get_k_th(ins2, 0, INF)\n continue\n\n found_nearest = b == w\n\n while stack:\n c = stack.pop()\n if found_nearest:\n rbst_delete(ins1, c)\n rbst_delete(ins2, moves[c])\n else:\n if c < b + 1:\n rbst_delete(ins1, c)\n rbst_insert(ins1, b + 1)\n rbst_delete(ins2, moves[c])\n rbst_insert(ins2, moves[c] + b + 1 - c)\n moves[b + 1] = moves[c] + b + 1 - c\n\n found_nearest = True\n\n move = rbst_get_k_th(ins2, 0, INF)\n if move == INF:\n break\n\n ans[row] = row + move + 1\n\n return ans\n\n\ndef debug_print(children, values, counts, root):\n print(children.T)\n print(values)\n print(counts)\n _debug_print(children, values, counts, root, 0)\n\n\ndef _debug_print(children, values, counts, i, depth):\n if i != -1:\n _debug_print(children, values, counts, children[i, 0], depth + 1)\n print(' ' * depth, values[i], counts[i])\n _debug_print(children, values, counts, children[i, 1], depth + 1)\n\n\nif sys.argv[-1] == 'ONLINE_JUDGE':\n # from numba.pycc import CC\n #\n # cc = CC('my_module')\n # cc.export('solve', '(i8[:],)')(solve)\n # cc.compile()\n\n import base64\n import subprocess\n\n # with open('my_module.tar.bz2', 'rb') as rh, open('my_module.txt', 'w') as wh:\n # bin = str(base64.b85encode(rh.read()), encoding='utf8')\n # wh.write(bin)\n\n bin = 'LRx4!F+o`-Q&}8X>j?x8_5c6>|NsC0|NsC0|NsC0|NsC0|NsC0|NsC0|NsC0|NsBvx5<T`?(OOxx&QzG000-MMF0Q*006x10DS|6paan6&!Er>000Bf0Awf>04M+fKndevwwvvcI;le-Mt}f108vk1eSPr9Me0T>yK*`(n)>xU+TO<Wl$dvOcb3|soltf3yy<(}z3*$F63A!*1{Q4gY44PgPrY%<+a|PU4b*!n?ld1-kdm7FjNxwp002G%>r+rFl;--2pf29uDv;sJb=AYr0&ZX(0ra4tcQvn}@&V\n\n with open('my_module.tar.bz2', 'wb') as wh:\n wh.write(base64.b85decode(bin))\n\n subprocess.run(['tar', 'xvjf', 'my_module.tar.bz2'])\n\n exit()\n\nif os.name == 'posix' or True:\n try:\n \n from my_module import solve\n except ModuleNotFoundError:\n print('WA')\n exit()\nelse:\n from numba import njit\n\n solve = njit('(i8[:],)', cache=True)(solve)\n print('compiled!', file=sys.stderr)\n\ninp = np.fromstring(sys.stdin.read(), dtype=np.int64, sep=' ')\nans = solve(inp)\nprint('\\n'.join(map(str, ans)))\n", "d, t, s = map(int, input().split())\nprint('Yes' if t * s >= d else 'No')\n"] | ['Wrong Answer', 'Accepted'] | ['s915164555', 's134973764'] | [92276.0, 9160.0] | [878.0, 27.0] | [333293, 73] |
p02570 | u340819006 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d, t, s = map(int,input().split())\n\narrival = d/s\n\nif arrival > t:\n print('no')\n else:\n print('yes')\n", "d,t,s = map(int, input().split())\n\nif d/s > t:\n print('No')\nelse:\n print('Yes')"] | ['Runtime Error', 'Accepted'] | ['s489621192', 's607089189'] | [9016.0, 9128.0] | [22.0, 27.0] | [104, 81] |
p02570 | u343976048 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\nD = int(input())\nT = int(input())\nS = int(input())\nif D > T * S:\n print("No")\nelse:\n print("Yes")', '\nInformation_Lists = input().split()\n\nD = int(Information_Lists[0])\nT = int(Information_Lists[1])\nS = int(Information_Lists[2])\nif D > T * S:\n print("No")\nelse:\n print("Yes")'] | ['Runtime Error', 'Accepted'] | ['s315476037', 's795612581'] | [9128.0, 9148.0] | [23.0, 26.0] | [148, 360] |
p02570 | u344030307 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['n,m = map(int, input().split())\n\npar = [i-1 for i in range(1, n+1)]\n\ndef find (x):\n if par[x] == x:\n return x\n else:\n par[x] = find(par[x])\n return par[x]\n\ndef same(x,y):\n return find(x) == find(y)\n\ndef unite(x,y):\n x = find(x)\n y = find(y)\n if x == y:\n return 0\n par[x] = y\n\nfor i in range(m):\n a,b = map(int, input().split())\n unite(a-1, b-1)\n\nans = max(par)\nprint(ans)', "d,t,s = map(int, input().split())\nif d <= t*s:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s724960544', 's939510881'] | [9072.0, 9152.0] | [23.0, 32.0] | [392, 81] |
p02570 | u344276999 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['import numpy as np\n\nN = int(input())\nA = np.array([int(i) for i in input().split()])\nsum = 0\n\n\nfor x in A:\n sum += x\n sum %= (10**9+7)\n\n\nsum2 = 0\nfor x in A:\n sum2 += x*x\n sum2 %= (10**9+7)\n#sum2 = (A**2).sum() % (10**9+7)\n\nans = (sum**2 - sum2) % (10**9+7)\nif ans < 0:\n ans += (10**9+7)\nans *= int((10**9+7+1)/2) \nans %= (10**9+7)\nprint(int(ans))\n', 'D, T, S = [int(i) for i in input().split()]\n\nif(D/S <= T):\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s824846215', 's938405068'] | [26740.0, 9152.0] | [109.0, 25.0] | [444, 93] |
p02570 | u344813796 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s=map(int,input().split())\nprint("Yes" if d-s*t>=0 else "No")', 'd,t,s=map(int,input().split())\nprint("Yes" if d-s*t<=0 else "No")'] | ['Wrong Answer', 'Accepted'] | ['s403005179', 's097678319'] | [9156.0, 8960.0] | [31.0, 35.0] | [65, 65] |
p02570 | u346266986 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\nprint("Yes" if(d >= t*s) else "No")', 'd, t, s = map(int, input().split())\nprint("Yes" if(d <= t*s) else "No")'] | ['Wrong Answer', 'Accepted'] | ['s232751788', 's506890097'] | [9152.0, 9152.0] | [31.0, 37.0] | [71, 71] |
p02570 | u346785363 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['def main():\n user_in = input("")\n\n D, T, S = user_in.split(" ")\n need_time = float(D) / float(S)\n \n if(need_time <= int(S)):\n \tprint("yes")\n else:\n \tprint("no")\n \n \nif __name__ == "__main__":\n main()', 'def main():\n user_in = input("")\n\n D, T, S = user_in.split(" ")\n need_time = float(D) / float(S)\n \n if(need_time <= int(T)):\n \tprint("Yes")\n else:\n \tprint("No")\n \n \nif __name__ == "__main__":\n main()'] | ['Wrong Answer', 'Accepted'] | ['s609469685', 's199902580'] | [9156.0, 9180.0] | [30.0, 26.0] | [209, 209] |
p02570 | u347502437 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['N = int(input())\nA = list(input().split())\nB = [int(a) for a in A]\nx = 10**9+7\nsummation = 0\nfor i in range(N-1):\n for j in range(i+1,N):\n summation += (B[i] * B[j])\n summation % x\nprint(summation % x)', "D, T, S = map(int, input().split())\nif S*T >= D:\n print('Yes')\nelse:\n print('No')\n"] | ['Runtime Error', 'Accepted'] | ['s240100367', 's633905846'] | [9180.0, 9148.0] | [29.0, 29.0] | [218, 88] |
p02570 | u353919145 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d=int(input())\nt=int(input())\ns=int(input())\n\n \n if s*t >= d:\n print ('Yes')\n \n else:\n print ('No')", "import sys\n\ndef main():\n input = sys.stdin.read()\n data = list(map(int, input.split()))\n\n a, b, c = data\n\n if b*c >= a:\n print('Yes')\n else:\n print('No')\n\n\n\nif __name__ == '__main__':\n main()\n"] | ['Runtime Error', 'Accepted'] | ['s525322274', 's723524952'] | [8992.0, 9156.0] | [23.0, 28.0] | [125, 224] |
p02570 | u354623416 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D,T,S = map(int,input().split())\nif S >= D/T :\n print ("yes")\nelse :\n print ("no")\n', 'D,T,S = map(int,input().split())\nif S >= D/T :\n print ("yes")\nelse :\n print ("no")\n\n', 'D,T,S = map(int,input().split())\nif S >= D/T :\n print ("yes")\nelse :\n print ("no")\n\n', 'D,T,S = map(int,input().split())\nif S >= D/T :\n print ("yes")\nelse :\n print ("no")\n\n', 'D,T,S = map(int,input().split())\nif S >= D/T :\n print ("Yes")\nelse :\n print ("No")\n\n'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s012350975', 's251202990', 's605999701', 's938746305', 's960621234'] | [9160.0, 8984.0, 9072.0, 9072.0, 8956.0] | [27.0, 30.0, 26.0, 26.0, 28.0] | [89, 90, 90, 90, 90] |
p02570 | u355154595 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["x,y,z = map(int,input().split())\nif x/z>=y:\n print('Yes')\nelse:\n print('No')\n ", "x,y,z = map(int,input().split())\nif x/z<=y:\n print('Yes')\nelse:\n print('No')\n \n"] | ['Wrong Answer', 'Accepted'] | ['s073722198', 's931825094'] | [9080.0, 9148.0] | [28.0, 29.0] | [81, 82] |
p02570 | u355213193 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['N=int(input())\nA=list(map(int,input().split()))\nimport itertools\nc = itertools.combinations(A, 2)\nB=[]\na=0\nfor v in itertools.combinations(A, 2):\n c=v[0]*v[1]\n a=a+c\nprint(a%1000000007)', "D,T,S=map(int,input().split())\nif D/S <=T:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s334008283', 's455476566'] | [9108.0, 9156.0] | [28.0, 28.0] | [191, 81] |
p02570 | u357120030 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D, T, S = [int(v) for v in input().split()]\nprint("YES" if D / S <= T else "NO") ', 'D, T, S = [int(v) for v in input().split()]\nprint("Yes" if D / S <= T else "No") '] | ['Wrong Answer', 'Accepted'] | ['s642156813', 's794774400'] | [9048.0, 9012.0] | [28.0, 30.0] | [81, 81] |
p02570 | u357335656 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int,input().split())\n\nif d >= t * s:\n print("Yes")\nelse:\n print("No")', 'd, t, s = map(int,input().split())\n\nif d <= t * s:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s146271726', 's563643847'] | [9124.0, 9168.0] | [28.0, 26.0] | [89, 89] |
p02570 | u364555831 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D, T, S = map(int, input().split())\n\nif D < T * S:\n print("No")\nelse:\n print("Yes")\n', 'D, T, S = map(int, input().split())\n\nif D <= T * S:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s683615405', 's206558336'] | [9140.0, 9100.0] | [27.0, 28.0] | [90, 91] |
p02570 | u365416597 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['S = input()\nT = input()\nruijimax = 0\n\nfor first in range(len(S)-len(T)):\n ruiji = 0\n for i in range(len(T)):\n if S[first+i] == T[i]:\n ruiji += 1\n if ruijimax <= ruiji:\n ruijimax = ruiji\n\nprint(len(T)-ruijimax)', 'd,t,s = map(int, input().split())\n\nif d/t<=s:\n print("Yes")\nelse:\n print("No")\n\n\n'] | ['Runtime Error', 'Accepted'] | ['s902019528', 's949006493'] | [9080.0, 9136.0] | [27.0, 32.0] | [243, 87] |
p02570 | u366784601 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['inputArr = input().split(" ")\nprint(inputArr)\nif int(inputArr[0]) / int(inputArr[1]) <= int(inputArr[2]):\n print(\'Yes\')\nelse:\n print(\'No\')\n', 'inputArr = input().split(" ")\nprint(inputArr)\nif int(inputArr[0]) / int(inputArr[2]) <= int(inputArr[1]):\n print(\'Yes\')\nelse:\n print(\'No\')\n', 'inputArr = input().split(" ")\nprint(inputArr)\nif int(inputArr[0]) * int(inputArr[2]) <= int(inputArr[1]):\n print(\'Yes\')\nelse:\n print(\'No\')\n', 'inputArr = input().split(" ")\nif int(inputArr[0]) * int(inputArr[2]) <= int(inputArr[1]):\n print(\'Yes\')\nelse:\n print(\'No\')\n', 'inputArr = input().split(" ")\nprint(inputArr)\nprint(int(inputArr[0]) / int(inputArr[1]))\nif int(inputArr[0]) / int(inputArr[1]) <= int(inputArr[2]):\n print(\'Yes\')\nelse:\n print(\'No\')\n', 'inputArr = input().split(" ")\ncheck = int(inputArr[2]) - (int(inputArr[0]) / int(inputArr[1]))\nprint(check)\nif check >= 0:\n print(\'Yes\')\nelse:\n print(\'No\')\n', 'inputArr = input().split(" ")\ncheck = int(inputArr[2]) - (int(inputArr[0]) / int(inputArr[1]))\nif check >= 0:\n print(\'Yes\')\nelse:\n print(\'No\')\n'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s121043631', 's182252711', 's213378371', 's418637138', 's735514495', 's944931625', 's357269725'] | [9088.0, 9172.0, 9152.0, 9144.0, 9188.0, 9144.0, 9152.0] | [27.0, 33.0, 30.0, 31.0, 34.0, 29.0, 27.0] | [145, 145, 145, 129, 188, 162, 149] |
p02570 | u367323774 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d,t,s=map(int,input().split())\nif d>t*s:\n print('Yes')\nelse:\n print('No')", "d,t,s=map(int,input().split())\nif d>t*s:\n print('No')\nelse:\n print('Yes')"] | ['Wrong Answer', 'Accepted'] | ['s381247831', 's903331058'] | [9028.0, 9040.0] | [32.0, 32.0] | [75, 75] |
p02570 | u367794409 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["class UnionFind():\n def __init__(self, n):\n self.n = n\n self.parents = [-1] * n\n\n def find(self, x):\n if self.parents[x] < 0:\n return x\n else:\n self.parents[x] = self.find(self.parents[x])\n return self.parents[x]\n\n def union(self, x, y):\n x = self.find(x)\n y = self.find(y)\n\n if x == y:\n return\n\n if self.parents[x] > self.parents[y]:\n x, y = y, x\n\n self.parents[x] += self.parents[y]\n self.parents[y] = x\n\n def size(self, x):\n return -self.parents[self.find(x)]\n\n def same(self, x, y):\n return self.find(x) == self.find(y)\n\n def members(self, x):\n root = self.find(x)\n return [i for i in range(self.n) if self.find(i) == root]\n\n def roots(self):\n return [i for i, x in enumerate(self.parents) if x < 0]\n\n def group_count(self):\n return len(self.roots())\n\n def all_group_members(self):\n return {r: self.members(r) for r in self.roots()}\n\n def __str__(self):\n return '\\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())\n\nnm = list(map(int, input().split()))\nn = nm[0]\nm = nm[1]\n\nans = 0\n\nuf = UnionFind(n)\nfor i in range(m):\n friends = list(map(int, input().split()))\n uf.union(friends[0]-1,friends[1]-1)\n if ans < uf.size(friends[0]-1):\n ans = uf.size(friends[0]-1)\nprint(ans)", "class UnionFind():\n def __init__(self, n):\n self.n = n\n self.parents = [-1] * n\n\n def find(self, x):\n if self.parents[x] < 0:\n return x\n else:\n self.parents[x] = self.find(self.parents[x])\n return self.parents[x]\n\n def union(self, x, y):\n x = self.find(x)\n y = self.find(y)\n\n if x == y:\n return\n\n if self.parents[x] > self.parents[y]:\n x, y = y, x\n\n self.parents[x] += self.parents[y]\n self.parents[y] = x\n\n def size(self, x):\n return -self.parents[self.find(x)]\n\n def same(self, x, y):\n return self.find(x) == self.find(y)\n\n def members(self, x):\n root = self.find(x)\n return [i for i in range(self.n) if self.find(i) == root]\n\n def roots(self):\n return [i for i, x in enumerate(self.parents) if x < 0]\n\n def group_count(self):\n return len(self.roots())\n\n def all_group_members(self):\n return {r: self.members(r) for r in self.roots()}\n\n def __str__(self):\n return '\\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())\n\nnm = list(map(int, input().split()))\nn = nm[0]\nm = nm[1]\n\nans = 1\n\nuf = UnionFind(n)\nfor i in range(m):\n friends = list(map(int, input().split()))\n uf.union(friends[0]-1,friends[1]-1)\n if ans < uf.size(friends[0]-1):\n ans = uf.size(friends[0]-1)\nprint(ans)", "class UnionFind():\n def __init__(self, n):\n self.n = n\n self.parents = [-1] * n\n \n def find(self, x):\n if self.parents[x] < 0:\n return x\n else:\n self.parents[x] = self.find(self.parents[x])\n return self.parents[x]\n \n def union(self, x, y):\n x = self.find(x)\n y = self.find(y)\n \n if x == y:\n return\n \n if self.parents[x] > self.parents[y]:\n x, y = y, x\n \n self.parents[x] += self.parents[y]\n self.parents[y] = x\n \n def size(self, x):\n return -self.parents[self.find(x)]\n \n def same(self, x, y):\n return self.find(x) == self.find(y)\n \n def members(self, x):\n root = self.find(x)\n return [i for i in range(self.n) if self.find(i) == root]\n \n def roots(self):\n return [i for i, x in enumerate(self.parents) if x < 0]\n \n def group_count(self):\n return len(self.roots())\n \n def all_group_members(self):\n return {r: self.members(r) for r in self.roots()}\n \n def __str__(self):\n return '\\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())\n \nnm = list(map(int, input().split()))\nn = nm[0]\nm = nm[1]\n \nans = 0\n \nuf = UnionFind(n)\nfor i in range(m):\n friends = list(map(int, input().split()))\n uf.union(friends[0]-1,friends[1]-1)\n if ans < uf.size(friends[1]-1):\n ans = uf.size(friends[1]-1)\nprint(ans)", "class UnionFind():\n def __init__(self, n):\n self.n = n\n self.parents = [-1] * n\n\n def find(self, x):\n if self.parents[x] < 0:\n return x\n else:\n self.parents[x] = self.find(self.parents[x])\n return self.parents[x]\n\n def union(self, x, y):\n x = self.find(x)\n y = self.find(y)\n\n if x == y:\n return\n\n if self.parents[x] > self.parents[y]:\n x, y = y, x\n\n self.parents[x] += self.parents[y]\n self.parents[y] = x\n\n def size(self, x):\n return -self.parents[self.find(x)]\n\n def same(self, x, y):\n return self.find(x) == self.find(y)\n\n def members(self, x):\n root = self.find(x)\n return [i for i in range(self.n) if self.find(i) == root]\n\n def roots(self):\n return [i for i, x in enumerate(self.parents) if x < 0]\n\n def group_count(self):\n return len(self.roots())\n\n def all_group_members(self):\n return {r: self.members(r) for r in self.roots()}\n\n def __str__(self):\n return '\\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())\n\nnm = list(map(int, input().split()))\nn = nm[0]\nm = nm[1]\n\nans = 1\n\nuf = UnionFind(n)\nfor i in range(m):\n friends = list(map(int, input().split()))\n uf.union(friends[0]-1,friends[1]-1)\n if ans < uf.size(friends[0]-1):\n ans = uf.size(friends[0]-1)\nprint(ans)", "class UnionFind():\n def __init__(self, n):\n self.n = n\n self.parents = [-1] * n\n\n def find(self, x):\n if self.parents[x] < 0:\n return x\n else:\n self.parents[x] = self.find(self.parents[x])\n return self.parents[x]\n\n def union(self, x, y):\n x = self.find(x)\n y = self.find(y)\n\n if x == y:\n return\n\n if self.parents[x] > self.parents[y]:\n x, y = y, x\n\n self.parents[x] += self.parents[y]\n self.parents[y] = x\n\n def size(self, x):\n return -self.parents[self.find(x)]\n\n def same(self, x, y):\n return self.find(x) == self.find(y)\n\n def members(self, x):\n root = self.find(x)\n return [i for i in range(self.n) if self.find(i) == root]\n\n def roots(self):\n return [i for i, x in enumerate(self.parents) if x < 0]\n\n def group_count(self):\n return len(self.roots())\n\n def all_group_members(self):\n return {r: self.members(r) for r in self.roots()}\n\n def __str__(self):\n return '\\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())\n\nnm = list(map(int, input().split()))\nn = nm[0]\nm = nm[1]\n\nans = 1\n\nuf = UnionFind(n)\nfor i in range(m):\n friends = list(map(int, input().split()))\n uf.union(friends[0]-1,friends[1]-1)\n if ans < uf.size(friends[0]-1):\n ans = uf.size(friends[0]-1)\nprint(ans)", 's = input().split()\nt = int(s[1])*int(s[2])\nif (int(s[0]) <= t):\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s071725211', 's158553881', 's525361311', 's634360447', 's836743488', 's602954739'] | [9320.0, 9220.0, 9244.0, 9324.0, 9276.0, 9084.0] | [26.0, 26.0, 21.0, 27.0, 21.0, 26.0] | [1419, 1419, 1434, 1419, 1419, 103] |
p02570 | u368735320 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D, T, S = map(int, input().split())\nprint("Yes" if D * 5 <= T * S else "No")', 'D, T, S = map(int, input().split())\nprint("Yes" if D <= T * S else "No")\n'] | ['Wrong Answer', 'Accepted'] | ['s990159258', 's458864976'] | [9032.0, 9080.0] | [29.0, 33.0] | [76, 73] |
p02570 | u372477743 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s=map(int,input().split())\ntemp1=d//t\nif temp1>=s:\n print("YES")\nelse:\n print("NO")\n', 'd,t,s=map(int,input().split())\ntemp1=d//t\nif temp1==s:\n print("YES")\nelse:\n print("NO")', 'd,t,s=map(int,input().split())\ntemp=s*t\nif temp>=d:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s184178968', 's964068231', 's906551570'] | [9160.0, 8948.0, 9128.0] | [28.0, 31.0, 27.0] | [90, 89, 87] |
p02570 | u373331656 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D,T,S = input().split()\n\nif S*T >= D:\n print("Yes")\nelse:\n print("No")', 'D,T,S = map(int,input().split())\n\nif S*T >= D:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s224285414', 's125829103'] | [9024.0, 9152.0] | [28.0, 28.0] | [72, 81] |
p02570 | u375359010 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['# -*- coding: utf-8 -*-\n\nD, T, S = map(int, input().split())\n\nif D <= T*S:\n print("yes")\nelse:\n print("no")', '# -*- coding: utf-8 -*-\n\nD, T, S = map(int, input().split())\n\nif D <= T*S:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s464228828', 's244012994'] | [9164.0, 9160.0] | [25.0, 28.0] | [113, 113] |
p02570 | u382169090 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d,t,s= map(int,input().split())\nif float(d)/float(s)>=t:\n print('Yes')\nelse:\n print('No')", "d,t,s= map(int,input().split())\nif d/s<=t:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s238193553', 's984310293'] | [9176.0, 9152.0] | [29.0, 29.0] | [91, 77] |
p02570 | u382209062 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\n\nif d/t >= s:\n print("no")\nelse:\n print("yes")\n', 'd, t, s = map(int, input().split())\n\nres = d / t\n\nif s <= res:\n print("no")\nelse:\n print("yes")\n', 'd, t, s = map(int, input().split())\n\nres = d / t\n\nif s <= res:\n print("no")\nelse:\n print("yes")\n', 'd, t, s = map(int, input().split())\n\nif d/s >= t:\n print("no")\nelse:\n print("yes")\n', 'd, t, s = map(int, input().split())\n\nif s*t >= d:\n print("No")\nelse:\n print("Yes")\n', "D, T, S = map(int, input().split(' '))\n \nif S*T >= D:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s216075043', 's288846922', 's401988167', 's496042444', 's496876013', 's472924337'] | [9108.0, 9076.0, 9100.0, 9024.0, 9116.0, 9072.0] | [30.0, 27.0, 29.0, 24.0, 33.0, 24.0] | [89, 102, 102, 89, 89, 88] |
p02570 | u391382440 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['N = int(input())\nA = list(map(int,input().split()))\nsumA = sum(A)%(1000000007)\nsumA2 = (sumA * sumA)%(1000000007)\nsquare = 0\nfor i in range(N):\n square += ( A[i]**2 ) % (1000000007)\n square = square % (1000000007)\nbuf = sumA2 - square\nif buf < 0:\n buf = buf + (1000000007)\nres = ( buf * ((1000000007+1)//2)) % 1000000007\nprint(round(res))', 'D,T,S = map(int,input().split())\nduration = float(D)/float(S)\nif duration > T:\n print("No")\nelse:\n print("Yes")'] | ['Runtime Error', 'Accepted'] | ['s481360980', 's972663780'] | [9176.0, 9152.0] | [29.0, 32.0] | [346, 113] |
p02570 | u408148811 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,k=map(int,input().split())\nif (d>=t*k):\n print("Yes")\nelse :\n print("No")', 'd,t,k=map(int,input().split())\nif (d<=t*k):\n print("Yes")\nelse :\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s803512538', 's703609569'] | [9148.0, 9152.0] | [28.0, 28.0] | [79, 79] |
p02570 | u408958033 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['a = input()\nb = input()\nind = []\nfor i in range(len(a)-len(b)):\n if a[i] == b[0]:\n ind.append(i)\n\nans = len(b)\nfor i in range(len(ind)):\n count = 0\n for j in range(len(b)):\n if a[ind[i]+j]!=b[j]:\n count += 1\n ans = min(ans,count)\n\nprint(ans)', 'from math import *\n\ndef cin(): # To take limited number of inputs\n return map(int,input().split())\n\ndef cins(): # To take space sepreated strings\n return input.split()\n\ndef cino(test=False): # To take individual int input (test = False)\n if not test:\n return int(input())\n else: # To take string input (test = True)\n return input()\n\ndef cina(): # array input\n return list(map(int,input().split()))\n\ndef ssplit(): # multiple string input\n return list(input().split())\n\ndef printlist(l): # To print space seperated array\n for i in l:\n print(i,end=" ")\n\ndef main():\n a,b,c = cin()\n if a/c <= b:\n print("Yes")\n else:\n print("No")\n\nif __name__ == \'__main__\':\n main()\n'] | ['Runtime Error', 'Accepted'] | ['s822216050', 's905769384'] | [9112.0, 9184.0] | [26.0, 28.0] | [256, 724] |
p02570 | u409254176 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["x,y ,z= map(int,input().split())\nif x/z >=y:\n\tprint('Yes')\nelse:\n\tprint('No')", "x,y ,z= map(int,input().split())\nans=x/z\nprint(ans)\nif ans>=y:\n\tprint('Yes')\nelse:\n\tprint('No')", "x,y ,z= map(int,input().split())\nans=x/z\nif ans>=y:\n\tprint('Yes')\nelse:\n\tprint('No')", "x,y ,z= map(int,input().split())\nif x/z>=y:\n\tprint('Yes')\nelse:\n\tprint('No')", "x,y ,z= map(int,input().split())\nif x/z<=y:\n\tprint('Yes')\nelse:\n\tprint('No')"] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s065122844', 's147832923', 's320870683', 's526205158', 's087323621'] | [9120.0, 9024.0, 9056.0, 9188.0, 9156.0] | [29.0, 27.0, 27.0, 29.0, 28.0] | [77, 95, 84, 77, 77] |
p02570 | u412177362 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s=map(int,input().split())\nprint("YES" if t * s >= d else "NO")', 'd,t,s=map(int,input().split())\nprint("Yes" if t * s >= d else "No")\n'] | ['Wrong Answer', 'Accepted'] | ['s071487612', 's354025861'] | [9108.0, 9152.0] | [30.0, 28.0] | [67, 68] |
p02570 | u420332509 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["def l_in(type_): return list(map(type_, input().split()))\ndef i_in(): return int(input())\ndef m_in(type_): return map(type_, input().split())\ndef r_in(n, type_): return [type_(input()) for _ in range(n)]\nans = None\n\nd, t, s = m_in()\nans = 'Yes' if d <= t*s else 'No'\n\nprint(ans)\n", "def l_in(type_): return list(map(type_, input().split()))\ndef i_in(): return int(input())\ndef m_in(type_): return map(type_, input().split())\ndef r_in(n, type_): return [type_(input()) for _ in range(n)]\nans = None\n\nd, t, s = m_in(int)\nans = 'Yes' if d <= t*s else 'No'\n\nprint(ans)\n"] | ['Runtime Error', 'Accepted'] | ['s786679044', 's526059183'] | [9044.0, 9188.0] | [24.0, 28.0] | [279, 282] |
p02570 | u428341537 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D,T,S = map(int, input().split())\n\n\nif T-D/S>= 0:\n print("Yes")\n else:\n print("No")\n \n', 'x,y,z = int(input().split())\nD=x\nT=y\nS=z\n\nif T-D/S>= 0:\n print("Yes")\n else:\n print("No")', 'x,y,z = map(int, input().split())\nD=int x\nT=int y\nS=int z\n\nif T-D/S>= 0:\n print("Yes")\n else:\n print("No")', 'x,y,z = input()\n\nD=int x\nT=int y\nS=int z\n\nif T-D/S>= 0\n print("Yes")\n else:\n print("No")', 'x,y,z = int(input().split())\nint D=int x\nint T=int y\nint S=int z\n\nif T-D/S>= 0:\n print("Yes")\n else:\n print("No")', 'x,y,z = input()\n\nD=int x\nT=int y\nS=int z\n\nif T-D/S>= 0\n print("Yes")\n else print("No")', 'D,T,S = map(int, input().split())\n\nif T-D/S>= 0:\n print("Yes")\n else:\n print("No")', 'D, T, S = input() \n\n\nif T-D/S >= 0\n\tprint("Yes")\n \n else print("No")\n \n ', 'input().split()\n\nx,y,z = input().split()\nD=int x\nT=int y\nS=int z\n\nif T-D/S>= 0:\n print("Yes")\n else:\n print("No")', 'D,T,S = map(int, input().split())\n\nif T-D/S >= 0:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s009351115', 's166348353', 's251547306', 's351864703', 's440997530', 's480626052', 's510230130', 's604937044', 's867368189', 's010450944'] | [8916.0, 8832.0, 8932.0, 8880.0, 8996.0, 8880.0, 8960.0, 8984.0, 8860.0, 9012.0] | [27.0, 21.0, 23.0, 27.0, 25.0, 27.0, 23.0, 25.0, 24.0, 26.0] | [96, 96, 113, 95, 120, 90, 89, 76, 120, 88] |
p02570 | u430395207 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['[D T S] = [int(i) for i in input().split()]\nif D <= T * S:\n print("yes")\nelse:\n print("no")\n ', '[D, T, S] = [int(i) for i in input().split()]\nif D <= T * S:\n print("yes")\nelse:\n print("no")', '[D, T, S] = [int(i) for i in input().split()]\nif D <= T * S:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s071529052', 's571773196', 's848785284'] | [8836.0, 9108.0, 8988.0] | [29.0, 29.0, 27.0] | [95, 95, 95] |
p02570 | u430928274 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, input().split())\nif d =< t * s :\n print("Yes")\nelse :\n print("No")', 'd, t, s = map(int, input().split())\nif d <= t * s :\n print("Yes")\nelse :\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s223276428', 's315599360'] | [8940.0, 9156.0] | [23.0, 27.0] | [92, 92] |
p02570 | u435593586 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["d,t,s = map(int, input().split())\n\nif d/t >= s:\n print('Yes')\nelse:\n print('No')", "d,t,s = map(int, input().split())\n\nif d/t <= s:\n print('Yes')\nelse:\n print('No')\n"] | ['Wrong Answer', 'Accepted'] | ['s823505053', 's158132584'] | [9164.0, 9156.0] | [31.0, 24.0] | [82, 83] |
p02570 | u438720156 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s=input().split()\nx=d/s\nif x<=t:\n print("Yes")\nelse:\n print("No)\n', 'd,t,s=map(int,input().split())\nx=d/s\nif x<=t:\n print("Yes")\nelse:\n print("No)', 'd,t,s=map(int,input().split())\nx=d/s\nif x<=t:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s599173431', 's624627707', 's775341089'] | [9016.0, 9052.0, 9084.0] | [28.0, 26.0, 29.0] | [71, 79, 80] |
p02570 | u441902623 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d, t, s = map(int, inport().split())\n\nif t*s <= d:\n print("Yes")\nelse:\n print("No")\n', 'd, t, s = map(int, inport().split())\n\nif t*s <= d:\n print("yes")\nelse:\n print("No")', 'd, t, s = map(int, input().split())\n\nif t*s <= d:\n print("Yes")\nelse:\n print("No")\n', 'd, t, s = map(int, input().split())\n\nif d/s <= t:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s588548924', 's867870029', 's922134124', 's530015233'] | [8876.0, 8972.0, 9016.0, 9056.0] | [26.0, 26.0, 28.0, 26.0] | [86, 85, 85, 85] |
p02570 | u444398697 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['d,t,s = map(int,input().split())\n\ntemp = d/s\nif temp<=t:\n print("YES")\nelse:\n print("NO")\n', 'd,t,s = map(int,input().split())\n\ntemp = d/s\nif temp<=t:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s231738357', 's747508810'] | [9092.0, 9156.0] | [29.0, 29.0] | [96, 96] |
p02570 | u444573585 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['s = input()\n\ns_list = s.split()\n\ndistance = int(s_list[0]) #m\ntime = int(s_list[1]) #min\nsokudo = int(s_list[2]) #m/min\n\nif(distance / sokudo) >= time:\n print("Yes")\nelse:\n print("No")', 's = input()\n\ns_list = s.split()\n\ndistance = int(s_list[0]) #m\ntime = int(s_list[1]) #min\nsokudo = int(s_list[2]) #m/min\n\nif(distance / sokudo) <= time:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s030684319', 's995804273'] | [9168.0, 9168.0] | [29.0, 24.0] | [190, 190] |
p02570 | u446027224 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["try:\n D = int(input())\n T = int(input())\n S = int(input())\nexcept:\n print('Error')\nelse:\n tmp = T * S\n if D > tmp:\n print('No')\n else:\n print('Yes')", "try:\n D,T,S = [int(e) for e in input().split()]\nexcept:\n print('Error')\nelse:\n tmp = T * S\n if D > tmp:\n print('No')\n else:\n print('Yes')"] | ['Wrong Answer', 'Accepted'] | ['s322966683', 's452848789'] | [9192.0, 9000.0] | [30.0, 26.0] | [183, 166] |
p02570 | u449237691 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['D,T,S=map(int,input().split())\nif T*S>D:\n print(Yes)\nelse:\n print(No)', 'D,T,S=map(int,input().split())\nif D<T*S:\n print(Yes)\nelse:\n print(No)', 'D,T,S map(int,input().split())\nif D<S*T\n print(Yes)\nelse\n print(No)', 'D,T,S=map(int,input().split())\nif D<S*T\n print(Yes)\nelse\n print(No)', 'D,T,S=map(int,input().split())\nif T*S>=D:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s397266208', 's436097609', 's797070510', 's824984258', 's468004272'] | [9040.0, 9160.0, 8904.0, 8944.0, 9156.0] | [26.0, 26.0, 25.0, 30.0, 24.0] | [71, 71, 67, 67, 76] |
p02570 | u450586332 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\nusing namespace std;\n\nint main() {\n //入力を受け取る\n int D, T, S;\n cin >> D >> T >> S;\n\n //高橋君の移動時間を計算する\n double time = (double)D / S;\n\n //Tとtimeの大小関係に応じて出力をする\n if (T >= time) {\n cout << "Yes" << endl;\n }\n else {\n cout << "No" << endl;\n }\n}\n', 'N = int(input())\nA = list(map(int,input().split()))\n\n\nSum = 0\nmod_n = 10.0E8 +7\n\nfor i in range(N-1):\n for j in range(i+1,N):\n if j == len(A):\n break\n else:\n Sum += A[i]*A[j]\n \n\n\n\n\n\n\nprint(Sum)\n\n\nprint(int(Sum % mod_n))', 'D, T, S = map(int, input().split())\n\ntime = D/S\n\nif time > T:\n print("No")\nelse: print("Yes")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s263610090', 's631481582', 's515795799'] | [8992.0, 9116.0, 9152.0] | [27.0, 22.0, 30.0] | [369, 314, 96] |
p02570 | u453248124 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["D, T, S = map(int, input().split())\n\nif D / S <= T:\n print('yes')\nelse:\n print('no')", "D, T, S = map(int, input().split())\n\nif D / S <= T:\n print('Yes')\nelse:\n print('No')\n"] | ['Wrong Answer', 'Accepted'] | ['s344720119', 's452047117'] | [9072.0, 9052.0] | [25.0, 29.0] | [90, 91] |
p02570 | u454649802 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["D, T, S = list(map(int, input().split()))\nif D <= T*S:\n print('YES')\nelse:\n print('NO')", "D, T, S = list(map(int, input().split()))\nif D <= T*S:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s816203360', 's265210080'] | [9160.0, 9180.0] | [31.0, 30.0] | [89, 89] |
p02570 | u457586786 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["N = int(input())\nA = input().split(' ')\na = 0\nsum = 0\nfor i in range(1, N):\n sum += int(A[i])\nfor i in range(N):\n a += int(A[i]) * sum\n if i < N - 1:\n sum -= int(A[i + 1])\n \nprint(int(a % (1e9 + 7)))", 'line = input().split(\' \')\nD = float(line[0])\nT = float(line[1])\nS = float(line[2])\n\nif D / S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s764399839', 's684396460'] | [9192.0, 9040.0] | [24.0, 30.0] | [219, 137] |
Subsets and Splits