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 | u458412487 | 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\nif d>D:\n print("Yes")\nelse:\n print("No")', 'A=input()\nA=A.split()\nD=int(A[0])\nT=int(A[1])\nS=int(A[2])\n\nif S*T>=D:\n print("yes")\nelse:\n print("no")', 'import numpy\nN=int(input())\nA=input()\nA=A.split()\nB=[]\nfor i in range(N):\n A[i]=int(A[i])\n\n \na=numpy.cumsum(A)\nb=0\nfor j in range(N)... | ['Runtime Error', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s122497004', 's218657994', 's555022050', 's895189687'] | [8984.0, 9172.0, 27128.0, 9128.0] | [26.0, 31.0, 111.0, 30.0] | [48, 104, 199, 104] |
p02570 | u458967973 | 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(t*s>d):\n print('Yes')\nelse:\n print('No')", "d,t,s = input().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')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s083090154', 's125354993', 's791405737'] | [9080.0, 9020.0, 9160.0] | [27.0, 27.0, 27.0] | [74, 75, 84] |
p02570 | u459276984 | 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 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")', 'D, T, S = map(int, input().split())\n\nif S*T >= D:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s207778193', 's852890737', 's797525887'] | [8992.0, 8744.0, 9128.0] | [24.0, 25.0, 31.0] | [82, 82, 84] |
p02570 | u461563687 | 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\nif d<=s*t:\n print("Yes")\nelse print("No") ', 'd,t,s=map(int,input().split())\n\nif t*s>=d:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s604602040', 's330508190'] | [8984.0, 9160.0] | [28.0, 28.0] | [74, 77] |
p02570 | u462524298 | 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*s >= d:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s872234791', 's132305126'] | [8880.0, 9056.0] | [22.0, 34.0] | [86, 86] |
p02570 | u465423770 | 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()))\n\nmod = 1000000007\n\n\nans = 0\nn = A[0]\nfor a in A[1:]:\n ans += a * n\n n += a\n\nprint(ans%mod)\n\n\n', 'd,t,s = map(int, input().split())\n\ndist = t * s\n\nif dist >= d:\n print("Yes")\nelse :\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s732196237', 's056749325'] | [9008.0, 9088.0] | [24.0, 26.0] | [152, 102] |
p02570 | u466916194 | 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()\narr = [int(d) for i in d.split()]\n\nt1 = arr[0]/arr[-1]\nif t1<= arr[1]:\n print("Yes")\nelse:\n print("No")\n', 'd,t,s =int(input()),(input()),int(input())\nt1 = d/s\nif t1<= t:\n print("Yes")\nelse:\n print("No")\n', 'd,t,s =int(input()),int(input()),int(input())\nt1 = d/s\nif t1<= t:\n print("Yes"... | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s013640609', 's220876682', 's519303442', 's173203236'] | [9080.0, 9056.0, 9168.0, 9056.0] | [29.0, 23.0, 22.0, 29.0] | [116, 98, 100, 116] |
p02570 | u467736898 | 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 < T:\n print("Yes")\nelse:\n print("No")\n', 'D, T, S = map(int, input().split())\nif S*T >= D:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s948893760', 's584418947'] | [9144.0, 9148.0] | [26.0, 34.0] | [87, 88] |
p02570 | u470439462 | 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()))\nD = (A[0])\nT = (A[1])\nS = (A[2])\nif D <= T * S:\n print("yes")\nelse:\n print("No")', 'A = list(map(int, input().split()))\nD = (A[0])\nT = (A[1])\nS = (A[2])\nif D <= T * S:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s498576848', 's867657386'] | [9132.0, 9136.0] | [26.0, 33.0] | [122, 122] |
p02570 | u471217476 | 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 print('No')\n", "d,t,s=map(int,input().split())\nprint('Yes') if d/s<=t else print('No')\n"] | ['Wrong Answer', 'Accepted'] | ['s139355670', 's175230159'] | [9092.0, 9088.0] | [33.0, 30.0] | [72, 71] |
p02570 | u476628920 | 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\nx = S*T\nif x >= D :\n print("yes")\nelse:\n print("no")', 'D,T,S = map(int,input().split())\n\nx = S*T\nif x >= D :\n print("yes")\nelse:\n print("no")', 'D,T,S = map(int,input().split())\n\nx = S*T\nif x >= D :\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s812040606', 's894599364', 's326117688'] | [9100.0, 9088.0, 9160.0] | [30.0, 27.0, 27.0] | [88, 88, 88] |
p02570 | u481060762 | 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 t*s >= D:\n prrint("Yes")\n\nelse:\n print("No")', 'd,t,s = map(int,input().split())\n\nif t*s >= d:\n print("Yes")\n\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s976527720', 's466730879'] | [9164.0, 9152.0] | [29.0, 28.0] | [87, 86] |
p02570 | u482029770 | 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\nif(D/S<=T):\n print('Yes')\n \nelse:\n print('No')", "i = list(map(int, input().split()))\n\nif(i[0]/i[2]<=i[1]):\n print('Yes')\n \nelse:\n print('No')\n"] | ['Runtime Error', 'Accepted'] | ['s660543259', 's473502278'] | [9160.0, 9108.0] | [24.0, 31.0] | [101, 96] |
p02570 | u483721532 | 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(input().split())\n\nprint('Yes' if D <T*S else 'No')", "D, T, S = map(int, input().split())\n\nprint('Yes' if D <= T*S else 'No')"] | ['Runtime Error', 'Accepted'] | ['s401371168', 's164682308'] | [8924.0, 8984.0] | [27.0, 27.0] | [64, 71] |
p02570 | u487183818 | 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")'] | ['Wrong Answer', 'Accepted'] | ['s076544779', 's799597744'] | [9156.0, 9096.0] | [32.0, 33.0] | [79, 79] |
p02570 | u498423166 | 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\nif D <= T * S:\n print("Yes")\nelse:\n print("NO")\n', 'D, T, S = map(int, input().split())\n\nif D <= T * S:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s595588431', 's039175338'] | [9096.0, 9048.0] | [24.0, 31.0] | [106, 91] |
p02570 | u505493564 | 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? | ["# union find, bfs\n\nimport sys\nfrom collections import deque\nsi = sys.stdin.readline\n\n\ndef main():\n [n, m] = [int(e) for e in si().split()]\n if not m:\n print(1)\n return\n\n visited = [False]*(n+1)\n fm = [set() for _ in range(n+1)]\n mx, comp = 0, 0\n\n while m:\n m -=... | ['Runtime Error', 'Accepted'] | ['s347335100', 's884048321'] | [9244.0, 9152.0] | [28.0, 29.0] | [858, 204] |
p02570 | u507444571 | 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(int,input().split())\n\nif d/t<=s:\n print("yes")\nelse:\n print("No")\n', 'd,t,s=list(map(int,input().split()))\n\nif d/t<=s:\n print("yes")\nelse:\n print("No")\n', 'def dts():\n\treturn list(map(int,input().split()))\n\nd,t,s=dts()\n\nif d<=t*s:\n print("yes")\nelse:\n print("No")\n', ... | ['Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s169123188', 's361619588', 's661408561', 's849870694', 's884391256', 's051305244'] | [8920.0, 9152.0, 9132.0, 9072.0, 9128.0, 9108.0] | [26.0, 26.0, 25.0, 26.0, 26.0, 31.0] | [83, 88, 114, 114, 100, 113] |
p02570 | u508061226 | 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 itertools\ns = input()\nt = input()\n\nans = 0\n\nA = itertools.combinations(list(range(len(t)+1)),2)\nfor i in A:\n part = t[i[0]:i[1]]\n if part in s:\n ans = len(part)\n \nprint(len(t) - ans)', 'd, t, s = map(int, input().split())\n\nif t * s >= d:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s608138353', 's701987148'] | [9124.0, 9156.0] | [22.0, 32.0] | [209, 86] |
p02570 | u510582860 | 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())\nV=[]\nfor _ in range(M):\n a,b=map(int,input().split())\n f=True\n for t in V:\n if a in t and b not in t:\n f=False\n t.append(a)\n break\n if a in t and b not in t:\n f=False\n t.append(b)\n break\... | ['Runtime Error', 'Accepted'] | ['s374610769', 's242494547'] | [8920.0, 9048.0] | [22.0, 28.0] | [396, 64] |
p02570 | u511899838 | 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\nfrom scipy.sparse.csgraph import connected_components\nfrom scipy.sparse import csr_matrix\nimport collections\n\nN, M = map(int, input().split())\nedge = np.array([input().split() for _ in range(M)], dtype=np.int8).T\n\nif M == 0:\n print(1)\nelse:\n\n tmp = np.ones(M, dtype=np.int8).T\n ... | ['Runtime Error', 'Accepted'] | ['s795763502', 's096678434'] | [37400.0, 9152.0] | [176.0, 30.0] | [464, 86] |
p02570 | u511975155 | 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()\nS,T = len(s),len(t)\n\nans = T\n\nfor i in range(S-T+1):\n tmp = [c1!=c2 for c1,c2 in zip(s[i:i+T],t)].count(True)\n ans = min(ans,tmp)\n\nprint(ans)\n', 'D,T,S = map(int,input().split())\nif D/T <= S:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s270578394', 's507278151'] | [9052.0, 9036.0] | [29.0, 30.0] | [172, 85] |
p02570 | u517797706 | 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 __name__ == \'__main__\':\n\n\td,t,s = map(int,input().split())\n\t\n\tprint(d,t,s)\n\n\tn = d / t\n\tif n <= s:\n\t\tprint("Yes")\n\telse:\n\t\tprint("No")', 'if __name__ == \'__main__\':\n\n\td,t,s = map(int,input().split())\n\n\tn = d / t\n\tif n <= s:\n\t\tprint("Yes")\n\telse:\n\t\tprint("No")'] | ['Wrong Answer', 'Accepted'] | ['s955247069', 's449464852'] | [9096.0, 9092.0] | [32.0, 28.0] | [137, 121] |
p02570 | u526966088 | 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 collections import defaultdict\n\nN, M = map(int, input().split())\nfriend_info = [list(map(int, input().split())) for _ in range(M)]\n\nrelation_dict = {}\nfor person1, person2 in friend_info:\n add_flag = False\n for k, v in relation_dict.items():\n if((person1 in v) or (person2 in v)):\n ... | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s020807291', 's137180151', 's352554971', 's386775533', 's572274316', 's648529205', 's697241035', 's929275246', 's978170955', 's066000306'] | [9400.0, 8996.0, 9152.0, 9120.0, 9016.0, 9028.0, 9124.0, 9376.0, 9088.0, 9076.0] | [28.0, 25.0, 27.0, 27.0, 30.0, 27.0, 28.0, 29.0, 25.0, 29.0] | [641, 382, 85, 84, 91, 84, 88, 643, 90, 89] |
p02570 | u529168072 | 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):\n\tprint("NO")\nelse:\n\tprint("YES")', 's=input()\na=len(s)\nt=input()\nb=len(t)\nmaxcnt=0\nfor i in range(a-b+1):\n\tcount=0\n\tfor j in range(b):\n\t\ts1=s[i+j]\n\t\ts2=t[j]\n\t\tif(s1==s2):\n\t\t\tcount+=1\n\tif(maxcnt<count):\n\t\tmaxcnt=count\t\nprint(b-maxcnt)', 'd,t,... | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s663118440', 's757137928', 's192656756'] | [9160.0, 9060.0, 9128.0] | [31.0, 28.0, 34.0] | [74, 197, 74] |
p02570 | u536642030 | 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()))\n if d / t <= s:\n print('Yes')\n else:\n print('No')", "d, t, s = list(map(int, input().split()))\nif d / t <= s:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s245229410', 's928769813', 's662425596'] | [8968.0, 8812.0, 9096.0] | [26.0, 25.0, 25.0] | [91, 111, 91] |
p02570 | u536866787 | 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(' ')))\nprint(s * t >= d)", "d, t, s = list(map(int, input()))\nif (s * t >= d):\n print('Yes')\nelse:\n print('No')", 'd, t, s = list(map(int, input()))\nprint(s * t >= d)', 'def func():\n\td, t, s = list(map(int, input()))\n\treturn s * t >= d', "d, t, s = list(map(int, input... | ['Wrong Answer', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s253786733', 's362962541', 's621788555', 's858461635', 's949073205', 's145010247'] | [9148.0, 9152.0, 9144.0, 9080.0, 9096.0, 9184.0] | [26.0, 28.0, 23.0, 30.0, 24.0, 30.0] | [62, 85, 51, 65, 85, 96] |
p02570 | u536873421 | 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())\nt_d = t * d\nif t_d >= d:\n print("yes")\nelse:\n print("no")\n', 'd, t, s = map(int, input())\nt_d = t * d\nif td >= d:\n print("yes")\nelse:\n print("no")', 'd, t, s = map(int, input().split())\nt_d = t * d\nif t_d >= d:\n print("yes")\nelse:\n print("no")\n', "d, ... | ['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Accepted'] | ['s245784586', 's568298511', 's820876684', 's663229890'] | [9156.0, 9184.0, 9148.0, 9156.0] | [28.0, 30.0, 27.0, 26.0] | [100, 86, 100, 87] |
p02570 | u537208079 | 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 = a[1]*a[2]\nif b >= a[0]:\n print('Yes')\nelif b < a[0]:\n print('No')", "a = input()\na = [int(a)]\nb = a[1]*a[2]\nif b >= a[0]:\n print('Yes')\nelif b < a[0]:\n print('No')", "a,b,c = (int(x) for x in input().split())\nif a >= b*c :\n print('Yes')\nelif a < b*c :\n print('No')", "a,b,c = ma... | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s065623838', 's324331112', 's333219128', 's363321487', 's538560634', 's801757360', 's967159062', 's797684865'] | [9024.0, 9120.0, 9104.0, 9096.0, 9044.0, 9100.0, 9008.0, 9100.0] | [26.0, 24.0, 27.0, 28.0, 27.0, 27.0, 24.0, 31.0] | [85, 96, 100, 92, 88, 84, 90, 92] |
p02570 | u540397572 | 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,s,t =[int(x) for x in input().split()]\nif d<=s*t:\n print("yes")\nelse:\n print("no")', 'd,s,t =[int(x) for x in input().split()]\nif d<=s*t:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s112993124', 's532507363'] | [9156.0, 9168.0] | [29.0, 28.0] | [86, 86] |
p02570 | u544865362 | 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 main():\n # n = int(input())\n\n [D, T, S] = [int(x) for x in input().split()]\n\n if D/S <= T:\n print('YES')\n else:\n print('NO')\n\n\n\n\n\n\n\n\n\n\n\nmain()\n", "import sys\ndef main():\n # n = int(input())\n\n [D, T, S] = [int(x) for x in input().split()]\n\n ... | ['Wrong Answer', 'Accepted'] | ['s348029398', 's820072339'] | [9060.0, 9080.0] | [28.0, 30.0] | [184, 174] |
p02570 | u546157297 | 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())\nDistance = T * S\nif(D > Distance):\n print('Yes')\nelse:\n print('No')", "D, T, S = map(int,input().split())\nDistance = T * S\nif(D <= Distance):\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s459423787', 's241122016'] | [9080.0, 9112.0] | [27.0, 31.0] | [108, 109] |
p02570 | u547520179 | 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:\n\tprint("YES")\nelse:\n\tprint("NO")\n', 'd,t,s=map(int,input().split())\nif d/s<=t:\n\tprint("Yes")\nelse:\n\tprint("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s218594318', 's972912434'] | [9144.0, 9064.0] | [29.0, 29.0] | [75, 75] |
p02570 | u551162413 | 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()\nstart, end = 0, len(t)\ndef f(s, t, start, end):\n min_changes = len(t)\n if start + len(t) == len(s):\n count = 0\n for i in range(len(t)):\n if s[start:end][i] != t[i]: count += 1\n return min(count, min_changes)\n return min(f(s, t, start+1, end+1)... | ['Runtime Error', 'Accepted'] | ['s064561486', 's863241106'] | [9144.0, 9108.0] | [25.0, 32.0] | [350, 79] |
p02570 | u552116325 | 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(input())\na = d / s\nprint('Yes' if a <= t else 'No')\n", "d, t, s = map(int, input().split())\na = d / s\nprint('Yes' if a <= t else 'No')"] | ['Runtime Error', 'Accepted'] | ['s514222170', 's834557349'] | [9168.0, 9148.0] | [26.0, 30.0] | [66, 78] |
p02570 | u553950286 | 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? | ['num = input()\nL = num.split()\nD = int(L[0])\nT = int(L[1])\nS = int(L[2])\nif D / S <= T:\n print("yes")\nelse:\n print("no")\n', 'num = input()\nL = num.split()\nD = int(L[0])\nT = int(L[1])\nS = int(L[2])\nif D / S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s914424086', 's375197184'] | [9136.0, 9124.0] | [30.0, 28.0] | [126, 125] |
p02570 | u556477263 | 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\u3000print('no')\nif d <= t * s:\n\u3000print('yes')", "d, t, s = map(int, input().split())\n\nif d > t * s:\n\t\tprint('No')\nif d <= t * s:\n\t\tprint('Yes')"] | ['Runtime Error', 'Accepted'] | ['s508408214', 's908529530'] | [8960.0, 9168.0] | [26.0, 28.0] | [95, 94] |
p02570 | u561636464 | 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:\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'] | ['s074614940', 's000688250'] | [9108.0, 9148.0] | [29.0, 30.0] | [87, 87] |
p02570 | u570991163 | 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())\nif(d/t>=s):\n print("YES")\nelse:\n print("NO")', 'd,t,s=map(int,input())\nif(d//t>=s):\n print("YES")\nelse:\n print("NO")\n', 'd,t,s=map(int,input())\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', 'Wrong Answer', 'Accepted'] | ['s082333201', 's192370110', 's396468027', 's508105928', 's594257125'] | [9156.0, 9080.0, 9080.0, 9148.0, 9144.0] | [27.0, 24.0, 27.0, 25.0, 32.0] | [69, 71, 70, 78, 78] |
p02570 | u587429593 | 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\nif t*s >= d:\n print('Yes')\nelse:\n print('No')", "d = int(input())\nt = int(input())\ns = int(input())\n\nif d/s <= t:\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')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s301405053', 's645337245', 's325557540'] | [9060.0, 9092.0, 9164.0] | [23.0, 29.0, 25.0] | [99, 99, 84] |
p02570 | u588592871 | 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(' '))\ntotal=0\nS_i=0\nfor i in range(n-1):\n S_i+=int(a[n-1-i])\n S_i=S_i%(7+10**9)\n total+=S_i*int(a[n-2-i])\n total=total%(7+10**9)\nprint(total)", "A=list(input().split())\n\nif int(A[0])<=int(A[1])*int(A[2]):\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s039758617', 's886717793'] | [9144.0, 9036.0] | [25.0, 25.0] | [189, 94] |
p02570 | u589432040 | 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:\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")\n'] | ['Runtime Error', 'Accepted'] | ['s960315457', 's448360389'] | [9116.0, 9036.0] | [27.0, 26.0] | [83, 84] |
p02570 | u590107758 | 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 java.util.*;\nimport java.io.*;\nimport java.math.BigInteger;\npublic class Main {\n static long mod = (long)1e9 + 7;\n static long mod1 = 998244353;\n static FastScanner f;\n static PrintWriter pw = new PrintWriter(System.out);\n static Scanner S = new Scanner(System.in);\n static long x0; s... | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s373732531', 's910321578', 's208200692'] | [8856.0, 8892.0, 9132.0] | [24.0, 29.0, 33.0] | [5068, 5050, 104] |
p02570 | u595833382 | 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(input().split())\n\nif T*S >= D:\n print("Yes")\nelse:\n print("No")', 'D,T,S = [int(x) for x in input().split()]\n\nif T*S >= D:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s840961319', 's220433842'] | [9020.0, 9160.0] | [29.0, 27.0] | [81, 94] |
p02570 | u596797226 | 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? | ["m, t, s = input().split()\nif m // s <= t:\n print('YES')\nelse:\n print('No')", "m, t, s = input().split()\nif int(m) // int(s) <= int(t):\n print('YES')\nelse:\n print('No')", "m, t, s = input().split()\nif float(m) / float(s) <= float(t):\n print('YES')\nelse:\n print('No')", "m, t, s = input().split()\nif f... | ['Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s415527466', 's657105546', 's953152150', 's047414001'] | [9056.0, 9064.0, 9000.0, 9100.0] | [24.0, 29.0, 29.0, 29.0] | [76, 91, 96, 96] |
p02570 | u598924163 | 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):\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'] | ['s303625398', 's399709777'] | [9152.0, 9152.0] | [27.0, 33.0] | [85, 85] |
p02570 | u601264495 | 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\n\nD,T,S = [int(i) for i in sys.stdin.readline()]\n\nif(S*T>=D):\n\tprint("Yes")\nelse:\n\tprint("No")', 'import sys\n\nD,T,S = [int(i) for i in sys.stdin.readline().split()]\n\nif(S*T>=D):\n\tprint("Yes")\nelse:\n\tprint("No")'] | ['Runtime Error', 'Accepted'] | ['s387427050', 's548881222'] | [9120.0, 9068.0] | [24.0, 26.0] | [104, 112] |
p02570 | u605880635 | 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()))\n\nk = 1000000007\n\nsm = sum(A)\n\nans = 0\nfor s in range(len(A)-1):\n \n sm -= A[s]\n ans += A[s]*sm\n\nif ans>1000000007:\n print(ans%k)\nelse:\n print(ans)\n', 'D, T, S = map(int, input().split())\n\nif T*S >= D:\n print("Yes")\nelse:\n pr... | ['Runtime Error', 'Accepted'] | ['s402471587', 's480712729'] | [8924.0, 9156.0] | [23.0, 28.0] | [238, 89] |
p02570 | u607629451 | 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 T%S >= D :\n print("YES")\nelse :\n print("NO")', 'D,T,S = map(int,input().split())\n\nA=T*S\n\nif A>=D:\n print("YES")\nelse:\n print("NO")', 'D, T, S = list(map(int, input().split()))\n\nif T * S >= D :\n print("YES")\nelse:\n print("NO")', 'D, T, S = map... | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer',... | ['s025166742', 's110020913', 's240871822', 's248938518', 's264505405', 's304712202', 's306798558', 's318147851', 's442702377', 's496920178', 's505094286', 's551557611', 's565644608', 's629605762', 's776663337', 's811661979', 's820422188', 's915324941', 's929073302', 's965492548', 's990179490', 's912356968'] | [9056.0, 9124.0, 9068.0, 9060.0, 9076.0, 8980.0, 9156.0, 9092.0, 8952.0, 8944.0, 9064.0, 9092.0, 9072.0, 9080.0, 9056.0, 9132.0, 8936.0, 9120.0, 9176.0, 9116.0, 9104.0, 9092.0] | [29.0, 26.0, 28.0, 30.0, 25.0, 31.0, 25.0, 29.0, 31.0, 26.0, 30.0, 27.0, 27.0, 27.0, 26.0, 25.0, 28.0, 27.0, 31.0, 27.0, 26.0, 28.0] | [90, 89, 97, 92, 87, 102, 81, 83, 100, 104, 84, 98, 84, 83, 83, 91, 92, 93, 90, 94, 91, 84] |
p02570 | u608327706 | 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\ndef main():\n\td,t,s = map(int, input().split())\n\tif t-(d*s) >= 0:\n\t\tprint('Yes')\n\telse:\n\t\tprint('No')\n\n\nif __name__ == '__main__':\n\tmain()\n", "# coding: utf-8\ndef main():\n\td,t,s = map(int, input().split())\n\tif d-(t*s) >= 0:\n\t\tprint('Yes')\n\telse:\n\t\tprint('No')\n\n\nif __n... | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s675797903', 's818319328', 's575880429'] | [9156.0, 9152.0, 9120.0] | [25.0, 26.0, 31.0] | [154, 154, 154] |
p02570 | u612519519 | 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'] | ['s946579474', 's409778085'] | [9156.0, 9152.0] | [32.0, 27.0] | [83, 83] |
p02570 | u623283955 | 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:print(No)', "d,t,s=map(int,input().split())\nif d<=t*s:\n print('Yes')\nelse:print('No')"] | ['Runtime Error', 'Accepted'] | ['s200633695', 's509465656'] | [9096.0, 9152.0] | [24.0, 27.0] | [69, 73] |
p02570 | u626250169 | 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()\na_num = [int(i) for i in a]\nprint(a_num)\n\nif a_num[0] / a_num[2] <= a_num[1]:\n print("Yes")\nelse:\n print("No")', 'a = input().split()\na_num = [int(i) for i in a]\n\nif a_num[0] / a_num[2] <= a_num[1]:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s788490588', 's468743051'] | [9152.0, 9100.0] | [26.0, 30.0] | [136, 123] |
p02570 | u626881915 | 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:\n print("Yes")\nelse:\n print("No")', 'd,t,s = map(int,input().split())\nif d > s*t:\n print("No")\nelse:\n print("Yes")\n'] | ['Wrong Answer', 'Accepted'] | ['s588210497', 's505554069'] | [8932.0, 8972.0] | [27.0, 29.0] | [79, 80] |
p02570 | u629138610 | 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#print(D, T, S)\nt = D/S\nif t <= T:\n print('yes')\nelse:\n print('no')", "# -*- coding: utf-8 -*-\nD, T, S = map(int, input().split())\nt = D//S\nif t <= T:\n\tprint('yes')\nelse:\n\tprint('no')", "# -*- coding: utf-8 -*-\nD, T, S = map(int, input(... | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s010179198', 's162128537', 's539653780', 's852345090', 's886438287'] | [9160.0, 9076.0, 9156.0, 9080.0, 8928.0] | [28.0, 29.0, 27.0, 28.0, 28.0] | [133, 112, 118, 127, 133] |
p02570 | u631521893 | 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 t*s >= d : print('YES')\nelse : print('NO')", "arr = list(map(int,input().split()))\n \nd = arr[0]\nt = arr[1]\ns = arr[2]\n \nif t*s >= d : print('YES')\nelse : print('NO')", "d, t, s = map(int,input().split())\n\nif t*s >= d : \n print('YES')\nelse:\n print('NO')", "d, t, ... | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s227240105', 's756623284', 's785578620', 's977911930', 's544785085'] | [9116.0, 9160.0, 9148.0, 9144.0, 9160.0] | [33.0, 25.0, 32.0, 30.0, 29.0] | [81, 119, 85, 81, 78] |
p02570 | u636582303 | 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()))\n\nmin = d / s\n\nif min <= t:\n print("Yes")\nelse:\n print("No")', 'd, t, s = list(map(int, input().split(" ")))\n\nmin = d / s\n\nif min <= t:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s290674593', 's914661031'] | [9140.0, 9152.0] | [24.0, 26.0] | [95, 107] |
p02570 | u637387397 | 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 d <= int(t)*int(s):\n print("Yes")\nelse:\n print("No")', 'd,t,s = input().split(" ")\n\nif int(d) <= int(t)*int(s):\n print("Yes")\nelse:\n print("No")\n\n'] | ['Runtime Error', 'Accepted'] | ['s442904087', 's524035052'] | [9088.0, 9092.0] | [30.0, 29.0] | [85, 92] |
p02570 | u639306469 | 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/s <= t):\n print("YES")\nprint("NO")', 'd,t,s=list(map(int,input().split(" ")))\nif(d/s <= t):\n print("YES")\nelse:print("NO")', 'd,t,s=list(map(int,input().split(" ")))\nif(d/s <= t):\n print("Yes")\nelse:print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s840080813', 's915400566', 's408708290'] | [9052.0, 9096.0, 9156.0] | [26.0, 30.0, 27.0] | [80, 87, 87] |
p02570 | u643081547 | 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,S,T = map(int,input().split()))\nprint("Yes" if D<=S*T else "No")', 'D,S,T = map(int,input().split())\nprint("Yes" if D<=S*T else "No")'] | ['Runtime Error', 'Accepted'] | ['s237661844', 's698465692'] | [8940.0, 9148.0] | [28.0, 25.0] | [66, 65] |
p02570 | u643426419 | 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 -*-\nN= int(input())\nA= list(map(int,input().split(' ')))\n \nans = 0\nfor i in range(len(A)-1):\n for j in range(i+1, len(A)):\n ans += A[i]*A[j]\n \nprint(ans)\n", "# -*- coding: utf-8 -*-\nD, T, S= map(int,input().split(' '))\nprint('Yes' if D / S <= T else 'No')\n"] | ['Runtime Error', 'Accepted'] | ['s210622127', 's842339347'] | [9160.0, 9140.0] | [30.0, 32.0] | [178, 98] |
p02570 | u644139801 | 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:\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")', 'd,t,s=map(int,input(.split())\nif d/s<=t:\n\tprint("YES")\nelse:\n\tprint("NO")', 'd=int(input())\nt=int(input())\ns=int(input())\nif d/s<... | ['Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s047344613', 's122589517', 's189196664', 's274333907', 's293058194', 's525476677', 's548100811', 's598103382', 's637170584', 's815708903'] | [8956.0, 9152.0, 8988.0, 9148.0, 9036.0, 9028.0, 9124.0, 9164.0, 9164.0, 9164.0] | [27.0, 28.0, 27.0, 25.0, 30.0, 25.0, 27.0, 26.0, 27.0, 32.0] | [80, 84, 73, 94, 80, 95, 94, 80, 94, 84] |
p02570 | u645937929 | 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? | ['list1 = input().split(" ")\nif int(list1[0]) <= int(list1[1]) * int(list[2]):\n print("Yes")\nelse:\n print("No")', 'list1 = input().split(" ")\nif int(list1[0]) <= int(list1[1]) * int(list1[2]):\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s481627826', 's123072478'] | [9108.0, 9144.0] | [28.0, 30.0] | [115, 116] |
p02570 | u648759666 | 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())\nif D/S <= T:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s980827816', 's575224587'] | [9152.0, 9148.0] | [29.0, 26.0] | [84, 83] |
p02570 | u649840780 | 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()]\n\nif S*T >= D:\n\tprint("YES")\nelse:\n\tprint("NO")', 'D,T,S = [int(i) for i in input().split()]\n \nif S*T >= D:\n\tprint("Yes")\nelse:\n\tprint("No")'] | ['Wrong Answer', 'Accepted'] | ['s936743021', 's375969299'] | [9092.0, 9096.0] | [29.0, 31.0] | [88, 89] |
p02570 | u658600714 | 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\nif s*t<d:\n print('No')\nelse:\n print('Yes')", "d, t, s = map(int, input().split())\n\nif s*t<d:\n print('No')\nelse:\n print('Yes')"] | ['Runtime Error', 'Accepted'] | ['s526591201', 's472986549'] | [9072.0, 9156.0] | [24.0, 27.0] | [96, 81] |
p02570 | u658905620 | 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')"] | ['Wrong Answer', 'Accepted'] | ['s765743659', 's763158172'] | [9072.0, 9072.0] | [35.0, 27.0] | [79, 79] |
p02570 | u661040695 | 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(input().split())\nif(d/s <= t):\n print('Yes')\nelse:\n print('No')", "d, t, s = input().split()\nif(d/s <= t):\n print('Yes')\nelse:\n print('No')", "d, t, s = input().split()\nint(d)\nint(t)\nint(s)\nif(d/s <= t):\n print('Yes')\nelse:\n print('No')", "d, t, s = input().split()\nd = ... | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s022334758', 's760958651', 's809360772', 's697999076'] | [8996.0, 9032.0, 9032.0, 9148.0] | [27.0, 29.0, 22.0, 24.0] | [83, 78, 99, 111] |
p02570 | u663404111 | 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 t*s<d:\n print('Yes')\nelse:\n print('No')", "d,t,s=list(map(int, input().split()))\nif t*s<d:\n print('No')\nelse:\n print('Yes')\n"] | ['Wrong Answer', 'Accepted'] | ['s656258408', 's250095352'] | [9152.0, 9144.0] | [29.0, 34.0] | [84, 85] |
p02570 | u667084803 | 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, S, T = map(int, input().split())\nif S*T <= D:\n print("Yes")\nelse:\n print("No")', 'N = int(input())\nA = list(map(int, input().split()))\na = (sum(A)**2)\nb = sum([(a**2) for a in A])\nprint(((a-b)%(10**9+7))//2)', 'D, S, T = map(int, input().split())\nif S*T >= D:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s036557262', 's298681054', 's075948179'] | [9104.0, 9072.0, 9168.0] | [30.0, 23.0, 29.0] | [83, 126, 83] |
p02570 | u668552863 | 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(' ')\nif D/S>T:\n print('No')\nelse\n print('Yes')", 'S=input()\nT=input()\ni=0\nj=0\nmatch = 0\nfor i in Range(len(S)-len(T)):\n count = 0\n for j in Range(Len(T)):\n if S[i+j]==T[j]:\n count=count+1\n \n if match<count:\n match=count\n\nprint(Len(T)-match)\n ', 'S=input()... | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s468938881', 's523847075', 's675837822', 's667468974'] | [8996.0, 9032.0, 9048.0, 9116.0] | [28.0, 26.0, 31.0, 29.0] | [70, 212, 209, 85] |
p02570 | u668649725 | 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, b, c = map(int, input().split())\nif a < b*c:\n print("yes")\nelse:\n print(\'no\')', 'a, b, c = map(int, input().split())\nif a <= b*c:\n print("Yes")\nelse:\n print(\'No\')'] | ['Wrong Answer', 'Accepted'] | ['s269086509', 's663424570'] | [9044.0, 9040.0] | [30.0, 26.0] | [86, 87] |
p02570 | u669742612 | 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:\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")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s207913124', 's432739268', 's820527365'] | [9160.0, 9128.0, 9060.0] | [28.0, 32.0, 30.0] | [74, 74, 80] |
p02570 | u674239367 | 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')\n else:\n print('No')", "d,t,s = map(int, input().split())\nif d/s <= t:\n print('Yes')\nelse:\n print('No')\n"] | ['Runtime Error', 'Accepted'] | ['s412722490', 's892785741'] | [8800.0, 8940.0] | [22.0, 31.0] | [82, 82] |
p02570 | u677603969 | 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_s = input().split()\ndts_i = [int(n) for n in dts_s]\nif dts_i[0]/dts_i[1] > dts_i[2]:\n print("NO")\nelse:\n print("YES")', 'dts_s = input().split()\ndts_i = [int(n) for n in dts_s]\nif dts_i[0]/dts_i[1] > dts_i[2]:\n print("No")\nelse:\n print("Yes")'] | ['Wrong Answer', 'Accepted'] | ['s653998240', 's543983910'] | [9140.0, 9148.0] | [29.0, 29.0] | [123, 123] |
p02570 | u680540873 | 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\nN = int(input())\nSum = []\nA = list(map(int, input().split()))\nSum = [A[i]*A[j] for j in range(N) for i in range(j)]\nprint(np.array(Sum).sum()%(1000000000+7))', 'D,T,S = map(int, input().split())\nif D<=S*T:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s047749094', 's467824357'] | [27148.0, 9172.0] | [117.0, 34.0] | [176, 80] |
p02570 | u683530136 | 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 math\n\n\nd, t, s = map(int, input().split())\n\noutput = "";\n\nif d/s >= s:\n if math.ceil(d/s) = s:\n output = "Yes"\n else:\n output = "No"\nelse:\n output = "Yes"\n\nprint(output)\n', 'import math\n\n\nd, t, s = map(int, input().split())\n\noutput = "";\n\nif d/s > t:\n output = ... | ['Runtime Error', 'Accepted'] | ['s648750600', 's571135796'] | [8880.0, 9008.0] | [32.0, 31.0] | [302, 238] |
p02570 | u684849102 | 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")\n \nelse:\n print("no")', 'D, T, S = map(int, input().split())\n\nif D/S <= T:\n print("yes")\n \nelse:\n print("no")', 'D, T, S = map(int, input().split())\n\nif D/S <= T:\n print("Yes")\n \nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s243825277', 's279078980', 's845016387'] | [9112.0, 9144.0, 9164.0] | [30.0, 30.0, 33.0] | [86, 87, 87] |
p02570 | u686817216 | 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()))\nD=a[0]\nT=a[0]\nS=a[0]\n\nv=D/T\nif s>=v:\n print("Yes")\nelse:\n print("No")', 'a=list(map(int,input().split()))\nD=a[0]\nT=a[1]\nS=a[2]\n \nv=D/T\nif S>=v:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s070437629', 's439748121'] | [9160.0, 9164.0] | [24.0, 32.0] | [104, 105] |
p02570 | u689890477 | 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")\n\n}', 'd,t,s = map(int,input().split())\nif d <= t*s:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s445464193', 's936451934'] | [8996.0, 9156.0] | [24.0, 27.0] | [85, 80] |
p02570 | u690576712 | 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 = list(map(int, input().split()))\nama_a = sum(a_list)\nans = 0\nmod = 10**9+7\nfor i in a_list:\n ans+=i**2\nans = ama_a**2-ans\nans *= (mod+1)/2\nans %= mod\nprint(int(ans))\n\n \n ', "d, t, s = map(int, input().split())\nif d <= t*s:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s659807943', 's904679987'] | [9036.0, 9156.0] | [26.0, 27.0] | [212, 83] |
p02570 | u692711472 | 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 >0:\n print('No')\nelse:\n print('Yes')", "D = int(input())\nT = int(input())\nS = int(input())\nif D/S - T >0:\n print('No')\nelse:\n print('Yes')", "D,T,S = map(int,input().split())\nif D/S - T >0:\n print('No')\nelse:\n print('Yes')... | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s406391961', 's780371276', 's680583335'] | [9180.0, 9104.0, 9160.0] | [28.0, 24.0, 25.0] | [104, 104, 86] |
p02570 | u693592523 | 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 = map(int, input().split())\nd = s[0]\nt = s[1]\ns = s[2]\nif d >= t * s:\n print("Yes")\nelse:\n print("No")', 's = input().split()\nd = int(s[0])\nt = int(s[1])\ns = int(s[2])\nif d >= t * s:\n print("Yes")\nelse:\n print("No")', 's = input().split()\nd = int(s[0])\nt = int(s[1])\ns = int(s[2])\nif d <= t * s... | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s105221903', 's814334503', 's280305093'] | [9044.0, 9016.0, 9048.0] | [22.0, 30.0, 27.0] | [106, 111, 111] |
p02570 | u694536861 | 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()))\nmod = 10**9 + 7\nak = 0\nak_2 = 0\n\nfor i in range(N):\n ak += A[i]\n ak_2 += A[i] ** 2\ns = int(((ak ** 2) - ak_2) // 2)\nprint(s % mod)', "D, T, S = map(int, input().split())\n\nif S * T >= D:\n print('Yes') \nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s220072673', 's428131257'] | [9188.0, 9092.0] | [25.0, 26.0] | [185, 87] |
p02570 | u698348092 | 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? | ['inputs = input().split()\n\nmeter = int(inputs[0])\nlimit_minutes = int(inputs[1])\nspeed = int(inputs[2])\n\nif meter > limit_minutes * speed:\n print("no")\nelse:\n print("yes")', 'inputs = input().split()\n\nmeter = int(inputs[0])\nlimit_minutes = int(inputs[1])\nspeed = int(inputs[2])\n\nif meter > limit_mi... | ['Wrong Answer', 'Accepted'] | ['s505586064', 's663603581'] | [9156.0, 9092.0] | [27.0, 32.0] | [176, 177] |
p02570 | u699008198 | 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, S, T = map( int, input().split() )\n\nif D - S * T >= 0:\n print("Yes")\nelse:\n print("No")', 'N = int( input())\nA = list( map( int, input().split()))\n \nmod = 10 ** 9 + 7\n \ntotal = sum( A )\nret = 0\nfor a in A:\n ret = ( ret + ( total - a ) * a ) \nprint( ( ret // 2 ) % mod )', 'D, S, T = map( int, inpu... | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s389720507', 's544771648', 's625821114'] | [9152.0, 9168.0, 9152.0] | [28.0, 28.0, 35.0] | [92, 180, 92] |
p02570 | u699636103 | 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, s, t = [int(i) for i in input().split()]\nif s * t >= d:\n \tprint("Yes")\nelse\n\tprint("No")', 'd, s, t = [int(i) for i in input().split()]\nif s * t >= d:\n \tprint("Yes")\nelse:\n\tprint("No")\n'] | ['Runtime Error', 'Accepted'] | ['s588595470', 's128986549'] | [8936.0, 9084.0] | [24.0, 31.0] | [92, 94] |
p02570 | u699944218 | 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()))\n\nif D >= T * S:\n print('Yes')\nelse:\n print('No')", "D, T, S = list(map(int,input().split()))\n \nif D <= T * S:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s413902672', 's847583889'] | [9000.0, 8864.0] | [30.0, 26.0] | [93, 94] |
p02570 | u704287489 | 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:\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'] | ['s296299949', 's770016888'] | [9152.0, 9152.0] | [32.0, 33.0] | [85, 85] |
p02570 | u704563784 | 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/float(s):\n print("Yes")\nelse:\n print("No")', 'd, t, s = map(int, input().split())\nif t >= d/float(s):\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s342134010', 's913368192'] | [9120.0, 9056.0] | [32.0, 25.0] | [94, 95] |
p02570 | u705007443 | 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 d*s<=t:\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', 'Wrong Answer', 'Accepted'] | ['s504426056', 's777301800', 's725805032'] | [9164.0, 9060.0, 9188.0] | [29.0, 27.0, 27.0] | [83, 83, 83] |
p02570 | u707145750 | 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())\ndist = 0\ntime = 0\nwhile dist < d and time<=t:\n dist += s\n time += 1\nif time > t:\n print("NO")\nelse:\n print("YES")', 'd, t, s = map(int, input().split())\ncount = 1\nwhile s < d:\n s += s\n count += 1\nprint("YES") if (count <= t) else print("NO")', 'd, t,... | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s025237039', 's442299595', 's835074232', 's982808178', 's715917351'] | [9160.0, 9096.0, 9160.0, 9164.0, 9172.0] | [25.0, 30.0, 30.0, 29.0, 25.0] | [161, 130, 130, 140, 161] |
p02570 | u707567014 | 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 = int(input())\np = list(map(int,input().split()))\nmod = 10**9 + 7\n\nsum_list =[p[i]*p[t] for i in range(a) for t in range(a) if i<=t and not i ==t]\nnum = sum(sum_list)%mod\nprint(num)', "a,b,c = map(int,input().split())\nif a <= b*c:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s842227419', 's848730067'] | [9124.0, 9156.0] | [28.0, 29.0] | [183, 85] |
p02570 | u714852797 | 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()))\n\nx = sum(A)\ny = sum([A[i] ** 2 for i in range(N)])\n\nprint(((x ** 2 - y) // 2) % (10 ** 9 + 7))', 'D, T, S = map(int, input().split())\n\nif S * T <= D:\n\tprint("YES")\nelse:\n\tprint("NO")', 'D, T, S = map(int, input().split())\n\nif T * S <= D:\n\tprint("Ye... | ['Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s069833458', 's102127529', 's138746298', 's438392040'] | [9088.0, 9044.0, 9060.0, 9104.0] | [23.0, 27.0, 29.0, 29.0] | [147, 84, 84, 84] |
p02570 | u718426899 | 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')\n else:\n print('No')", "a, b, c = map(int, input().split())\nif a<=b*c:\n print('Yes')\nelse:\n print('No')\n "] | ['Runtime Error', 'Accepted'] | ['s233620913', 's972222517'] | [8940.0, 9148.0] | [27.0, 29.0] | [81, 90] |
p02570 | u719044784 | 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? | ['u=0\nu=int(input())\nA = list(map(int,input().split()))\nn = len(A)\nprr = 0\nfor i in range(n):\n for j in range(i + 1, n):\n prr = prr + A[i] * A[j]\nprint(prr)\n\n\n\n\n\n\n\n\n\n', 'd,t,s=list(map(int,input().split()))\nif d//s<=t:\n print("Yes")\nelif d=0 or t=0 or s=0:\n print("Yes")\n\n \nel... | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s166456179', 's760438087', 's885208658'] | [9080.0, 8956.0, 9032.0] | [29.0, 32.0, 28.0] | [174, 136, 130] |
p02570 | u723425623 | 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()\nif(s>=(d/t)):\n print("Yes")\nelse:\n print("No")', 'd,t,s=map(int,input().split())\nif(s>=(d/t)):\n print("Yes")\nelse:\n print("No")\n '] | ['Runtime Error', 'Accepted'] | ['s899530672', 's833031890'] | [8980.0, 9000.0] | [26.0, 30.0] | [74, 88] |
p02570 | u727051308 | 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()\nB = [0]*N\n\nfor i in range(N):\n A[i] = int(A[i])\n B[i] = A[i]*A[i]\n\nprint( ( ( (sum(A)*sum(A)) - sum(B) ) // 2 ) % ( 10**9 + 7 ) // 2 )\n', 'D, T, S = map(int,input().split())\nif (D <= (T*S)):\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s006162603', 's500533542'] | [9172.0, 9152.0] | [27.0, 27.0] | [174, 86] |
p02570 | u728910348 | 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_data = input()\ndata = split(int(input_data))\nd = data[0]\nt = data[1]\ns = data[2]\nprint("Yes") if d / s > t else print("No")', 'data = input("put:")\ndata = data.split()\nprint("Yes") if int(data[0]) / int(data[2]) <= int(data[1]) else print("No")', 'data = input()\ndata = data.split()\nprint("Yes") if int(... | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s591330435', 's651986453', 's378866567'] | [9020.0, 9020.0, 8972.0] | [29.0, 26.0, 25.0] | [129, 117, 111] |
p02570 | u730747703 | 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 else "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())\nprint("Yes" if (D / S) <= T else "No")\n'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s716377304', 's981212256', 's562832316'] | [8920.0, 8988.0, 9000.0] | [20.0, 24.0, 28.0] | [72, 85, 75] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.