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\nin... | ['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=m... | ['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())\nprin... | ['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__'... | ['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 e... | ['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_n... | ['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... | ['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.s... | ['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 imp... | ['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... | ['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]... | ['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:... | ['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(... | ['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().spl... | ['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'... | ['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')"... | ['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(in... | ['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(... | ['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]) / f... | ['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... | ['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, ... | ['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 ... | ['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 ... | ['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\nfo... | ['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 ... | ['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(... | ['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('... | ['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 ... | ['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,inpu... | ['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(... | ['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', '... | ['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)... | ['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("ye... | ['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... | ['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 ... | ['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... | ['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 l... | ['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 els... | ['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(... | ['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_lis... | ['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... | ['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(... | ['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()... | ['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[... | ['Runtime Error', 'Accepted'] | ['s764399839', 's684396460'] | [9192.0, 9040.0] | [24.0, 30.0] | [219, 137] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.