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 | u731461064 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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/c >= b:\n print("Yes")\nelse:\n print("No")', 'a,b,c = map(int, input().split()) \nif a/c <= b:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s481290384', 's806266097'] | [9152.0, 9156.0] | [29.0, 29.0] | [82, 82] |
p02570 | u732963817 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nimport itertools\nimport functools\n\n_ = input()\nA = list(map(int, input().split()))\n\nfor a, b in itertools.combinations(A, 2):\n if math.gcd(a, b) != 1:\n if functools.reduce(math.gcd, A) == 1:\n print('setwise coprime')\n else:\n print('not coprime')\n break\nelse:\n print('pairwise coprime')\n", "D, S, T = map(int, input().split())\nprint('Yes' if S * T >= D else 'No')\n"] | ['Runtime Error', 'Accepted'] | ['s089820728', 's929276877'] | [9472.0, 9136.0] | [31.0, 26.0] | [347, 73] |
p02570 | u735355352 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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")', 'D = int(input())\nT = int(input())\nS = int(input())\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")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s215754132', 's377133077', 's273600357'] | [9072.0, 9072.0, 9056.0] | [25.0, 26.0, 26.0] | [103, 103, 88] |
p02570 | u743383679 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = list(map(int, input().split()))\nam = []\nbm = []\nfor _ in range(m):\n a, b = list(map(int, input().split()))\n am.append(a)\n bm.append(b)\n\ngroups = []\nfor ai, bi in zip(am, bm):\n ag = None\n bg = None\n for g, group in enumerate(groups):\n if ai in group:\n ag = g\n if bi in group:\n bg = g\n if ag is None:\n if bg is None:\n groups.append([ai, bi])\n else:\n groups[bg].append(ai)\n else:\n if bg is None:\n groups[ag].append(bi)\n else:\n if ag != bg:\n groups[ag].extend(groups[bg])\n del groups[bg]\n\n\n# for group in groups:\n\n\nmax_gr_len = max([len(group) for group in groups] + [1])\n\nprint(max_gr_len)\n', "D, T, S = list(map(int, input().split()))\n\n\nif S * T >= D:\n print('Yes')\nelse:\n print('No')\n"] | ['Runtime Error', 'Accepted'] | ['s294089387', 's357631790'] | [9172.0, 9144.0] | [24.0, 26.0] | [838, 98] |
p02570 | u743878367 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['for i in range(len(S)-len(T)+1):\n\tsub_S = S[i:i+len(T)]\n\tcnt = 0\n\tfor j in range(len(T)):\n\t\tif sub_S[j] != T[j]:\n\t\t\tcnt += 1\n\tcnt_list.append(cnt)\nprint(min(cnt_list))', 'D,T,S = map(int,input().split())\nif D/S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s249309306', 's069520840'] | [8996.0, 9152.0] | [25.0, 23.0] | [167, 81] |
p02570 | u755524167 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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("Enter values in the range of 1 and 10000: ").split()] \nif (D and T) and S <=10000 and D/S<=T:\n print("Yes")\nelse:\n print("No")', 'D=int(input("Enter a number in the range of 0 and 10000: "))\nT=int(input("Enter a number in the range of 0 and 10000: "))\nS=int(input("Enter a number in the range of 0 and 10000: "))\ndef DontBeLate(D,T,S):\n \n if (D and T) and S <=10000 and D/S==T:\n print("Yes")\n else:\n print("No")\n(DontBeLate(D,T,S))\n', 'D=int(input("Enter a number in the range of 0 and 10000 10000: "))\nT=int(input("Enter a number in the range of 0 and 10000: "))\nS=int(input("Enter a number in the range of 0 and 10000: "))\n\nif (D and T) and S <=10000 and D/S==T:\n print("Yes")\nelse:\n print("No")', 'D,T,S= [int(x) for x in input("Enter values in the range of 1 and 10000: ").split()] \nif (D and T) and S <=10000 and D/S==T:\n print("Yes")\nelse:\n print("No")', 'D,T,S= [int(x) for x in input("Enter values in the range of 1 and 10000: ").split(",")] 5\nif (D and T) and S <=10000 and D/S==T:\n print("Yes")\nelse:\n print("No")', 'D,T,S= [int(x) for x in input("Enter values in the range of 1 and 10000: ").split(",")] \nif (D and T) and S <=10000 and D/S<=T:\n print("Yes")\nelse:\n print("No")', 'D,T,S= [int(x) for x in input().split()]\nif 1<=(D and T)<=10000 and (1<=S<=10000 and D/S<=T):\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s033787351', 's119150487', 's278577535', 's355891393', 's375096240', 's740996167', 's221548401'] | [9072.0, 9148.0, 9172.0, 9152.0, 8964.0, 9020.0, 9016.0] | [28.0, 27.0, 29.0, 32.0, 23.0, 26.0, 29.0] | [163, 325, 267, 163, 167, 166, 132] |
p02570 | u757424147 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 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")'] | ['Runtime Error', 'Accepted'] | ['s734949937', 's764794667'] | [9152.0, 9156.0] | [31.0, 30.0] | [76, 84] |
p02570 | u758973277 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['Wrong Answer', 'Accepted'] | ['s956890408', 's636488296'] | [9156.0, 9152.0] | [31.0, 25.0] | [107, 129] |
p02570 | u760207136 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\tprint("Yes")\nelse:\n\tprint("No")', 'D = input()\nT = input()\nS = input()\n\nif(D/S <= T) print("Yes")\nelse print("No")', 'D,T,S = map(int,input().split())\n\nif(D/S <= T):\n\tprint("Yes")\nelse:\n\tprint("No")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s101548783', 's118731729', 's934221621'] | [9020.0, 8956.0, 9108.0] | [24.0, 23.0, 27.0] | [83, 79, 80] |
p02570 | u760961723 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nimport math\nimport itertools\nimport collections\nfrom collections import deque\nfrom collections import defaultdict\n\nsys.setrecursionlimit(1000000)\nMOD = 10 ** 9 + 7\nMOD2 = 998244353\nINF = float('inf')\ninput = lambda: sys.stdin.readline().strip()\n\nNI = lambda: int(input())\nNMI = lambda: map(int, input().split())\nNLI = lambda: list(NMI())\nSI = lambda: input()\n\nclass UnionFind():\n def __init__(self, n):\n self.n = n\n self.parents = [-1] * n\n\n def find(self, x):\n if self.parents[x] < 0:\n return x\n else:\n self.parents[x] = self.find(self.parents[x])\n return self.parents[x]\n\n def union(self, x, y):\n x = self.find(x)\n y = self.find(y)\n\n if x == y:\n return\n\n if self.parents[x] > self.parents[y]:\n x, y = y, x\n\n self.parents[x] += self.parents[y]\n self.parents[y] = x\n\n def size(self, x):\n return -self.parents[self.find(x)]\n\n def same(self, x, y):\n return self.find(x) == self.find(y)\n\n def members(self, x):\n root = self.find(x)\n return [i for i in range(self.n) if self.find(i) == root]\n\n def roots(self):\n return [i for i, x in enumerate(self.parents) if x < 0]\n\n def group_count(self):\n return len(self.roots())\n\n def all_group_members(self):\n return {r: self.members(r) for r in self.roots()}\n\n def __str__(self):\n return '\\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())\n \ndef main():\n \n N, M = NMI()\n \n uf = UnionFind(N)\n \n for m in range(M):\n A,B = NMI()\n uf.union(A-1, B-1)\n\n ans = 0\n for n in range(N):\n ans = max(ans,uf.size(n))\n print(ans)\n\n\n\nif __name__ == '__main__':\n main()", 'D, T , S =map(int,input().split())\n\nif T*S >= D:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s951889091', 's597146563'] | [9532.0, 9156.0] | [28.0, 31.0] | [1783, 84] |
p02570 | u762523240 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()))\nresult = 0\ni = 0\nfor x in A[:N]:\n for y in A[i+1:]:\n result += x * y\n i += 1\n\nprint(result.__mod__(10**9 + 7))', "D, T, S = map(int, input().split())\nif D / S > T:\n print('No')\nelse:\n print('Yes')\n "] | ['Runtime Error', 'Accepted'] | ['s992133189', 's219565593'] | [9068.0, 9168.0] | [25.0, 33.0] | [168, 86] |
p02570 | u762540523 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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());print("YNeos"[t*s>=d::2])', 'd,t,s=map(int, input().split());print("YNeos"[t*s<d::2])'] | ['Wrong Answer', 'Accepted'] | ['s692398950', 's482755848'] | [9116.0, 9148.0] | [26.0, 25.0] | [57, 56] |
p02570 | u763380276 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['s751839747', 's759969541'] | [9156.0, 9056.0] | [33.0, 28.0] | [75, 76] |
p02570 | u763628696 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['s944360622', 's207971709'] | [9148.0, 9040.0] | [27.0, 30.0] | [84, 86] |
p02570 | u764066313 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['allsets = []\nn,t = list(map(int,input().split()))\nfor _ in range(t):\n a,b = list(map(int,input().split()))\n if a < b and [a,b] not in allsets:\n allsets.append([a,b])\n elif b < a and [b,a] not in allsets:\n allsets.append([b,a])\n# print(allsets)\nhmap = {}\nvisitedNode = {}\nfor a,b in allsets:\n if a in visitedNode:\n if b not in hmap[visitedNode[a]]:\n hmap[visitedNode[a]].append(b)\n del visitedNode[a]\n continue\n if a in hmap:\n hmap[a].append(b)\n visitedNode[b] = a\n else:\n hmap[a] = [b]\n visitedNode[b] = a\n# print(hmap)\nres = 0\nfor k,v in hmap.items():\n res = max(res,len(v)+1)\nprint(res)\n', 'd,t,s = list(map(int,input().split()))\nres = d/s\nprint("Yes" if res <= t else "No")'] | ['Runtime Error', 'Accepted'] | ['s858895724', 's376978949'] | [9240.0, 9152.0] | [24.0, 28.0] | [684, 83] |
p02570 | u766236264 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()\nminCount = len(t)\ni = 0\nwhile i < len(s) and i + len(t) <= len(s):\n countSame = 0\n j = 0\n while j < len(t):\n if t[j] == s[i+j]:\n countSame += 1\n j += 2\n minCount = min(len(t) - countSame, minCount)\n i += 1\nprint(minCount)\n', "d, t, s = map(int, input().split(' '))\nif t * s >= d:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s263102733', 's719954193'] | [9004.0, 9168.0] | [30.0, 35.0] | [290, 92] |
p02570 | u768219634 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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*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//T <= S :\n print("YES")\nelse :\n print("NO")', 'D,T,N = map(int,input().split())\nif D/T <= N :\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")'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s013403462', 's225619209', 's325591369', 's407303923', 's410909072', 's752943541', 's286149455'] | [9104.0, 9164.0, 9072.0, 9008.0, 9156.0, 9072.0, 9072.0] | [30.0, 27.0, 27.0, 28.0, 26.0, 26.0, 28.0] | [87, 86, 80, 87, 86, 84, 80] |
p02570 | u770293614 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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=input()\nA=map(int,input().split(' '))\nsummed=0\nfor i in range(0,N):\n\tfor j in range(i+1,N):\n\t\tsumed+=A[i]*A[j]\nMOD=10**9+7\nprint(sumed%MOD)\n", 'D,T,S=map(int,input().split(\' \'))\nif (D/S)<=T:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s705144443', 's121995577'] | [8912.0, 9160.0] | [27.0, 29.0] | [142, 82] |
p02570 | u777800738 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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())\nt=input().split(' ')\nnum=np.zeros(n)\nfor a in range(n):\n num[a]=int(t[a])\na=np.sum(num)**2\nb=np.sum(num**2)\nx=int((a-b)/2)\nx=x%(10**9+7)-1\nprint(x)", "import numpy as np\nn=int(input())\nt=np.array(input().split(' '))\nnum=np.zeros(n)\nfor a in range(n):\n num[a]=int(t[a])\na=np.sum(num)**2\nb=np.sum(num**2)\nx=int((a-b)/2)\nx=(x-1)%(10**9+7)\nprint(x)", "x=input().split(' ')\nd=int(x[0])\ns=int(x[1])\nt=int(x[2])\nif t<d/s:\n print('No')\nelse:\n print('Yes')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s649768967', 's725139844', 's295179675'] | [27136.0, 27152.0, 9088.0] | [114.0, 116.0, 30.0] | [182, 194, 101] |
p02570 | u784450941 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['# cording:utf-8\n\n\nD, T, S = map(int, input().split())\n\n\nif (D / S) <= T:\n print("yes")\nelse:\n print("no")\n', '# cording:utf-8\n\n\nD, T, S = map(int, input().split())\n\n\nif (D / S) <= T:\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Accepted'] | ['s735982933', 's757067013'] | [9096.0, 9152.0] | [30.0, 27.0] | [153, 153] |
p02570 | u790970861 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['type_in = input()\ns = type_in.split(\' \')\nD = int(s[0])\nT = int(s[1])\nS = int(s[2])\nprint(s, T, S, T * S)\nif (D <= T * S):\n\tprint("Yes")\nelse:\n\tprint("No")', 's = input()\nD = float(s[0])\nT = float(s[1])\nS = float(s[2])\nif (D > T * S):\n\tprint("No")\nelse:\n\tprint("Yes")', 'type_in = input()\ns = type_in.split(\' \')\nD = int(s[0])\nT = int(s[1])\nS = int(s[2])\nif (D <= T * S):\n\tprint("Yes")\nelse:\n\tprint("No")'] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s136503931', 's562579270', 's999328017'] | [9180.0, 9104.0, 9164.0] | [32.0, 34.0, 29.0] | [154, 108, 132] |
p02570 | u794406065 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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")', 'total_minute=D/S\n\nif total_minute<=T:\n print("Yes")\nelse:\n print("No', "info=input().split()\n\nD=info[0]\nS=info[1]\nT=info[2]\n\nif D/S<=T:\n print('Yes')\nelse:\n print('No')", 'total_minute=D/S\n \nif total_minute<=T:\n print("Yes")\nelse:\n print("No")', "info=input().split()\n \nD=int(info[0])\nS=int(info[1])\nT=int(info[2])\n \nif D/S<=T:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s068682707', 's251699349', 's478624530', 's573330347', 's742215453'] | [8996.0, 8952.0, 9008.0, 9024.0, 9016.0] | [25.0, 25.0, 25.0, 29.0, 27.0] | [45, 70, 98, 73, 115] |
p02570 | u795983729 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\ntime = D/S\n\nif time >= T:\n print("Yes")\n\nelse :\n print("No")\n\n', 'D, S, T= map(int, input().split())\n\ntime = D/S\n\nif time >= T:\n print("yes")\n\nelse :\n print("no")\n\n', 'D, S, T= map(int, input().split())\n\ntime = D/S\n\nif T >= time:\n print("Yes")\n\nelse :\n print("No")\n\n'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s681134172', 's887546056', 's933099214'] | [9088.0, 9132.0, 9048.0] | [29.0, 29.0, 27.0] | [104, 104, 104] |
p02570 | u799978560 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\u3000=\u3000map(int,input.split())\n\nif t <= d/s:\n print("Yes")\nelse:\n print("No")', '##A - Don\'t be late\nD,T,S = map(int,input().split())\nif D / S <= T:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s431419861', 's317659221'] | [8880.0, 9100.0] | [26.0, 30.0] | [83, 106] |
p02570 | u801047230 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nres = S*T\nif(res >= D):\n print("Yes")\nelse:\n print("No")\n', 'D = int(input())\nT = int(input())\nS = int(input())\n\nres = D/S\nif(res <= T):\n print("Yes")\nelse:\n print("No")\n', 'D, T, S = map(int,input().split())\n\nif(D/S <= T):\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s059528394', 's227226561', 's839507341'] | [9124.0, 9140.0, 9076.0] | [29.0, 28.0, 29.0] | [115, 115, 89] |
p02570 | u801274036 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["string_list = split(input())\nD = int(string_list[0])\nT = int(string_list[1])\nS = int(string_list[2])\nkyori = T * S\nif D<=kyori:\n print('Yes')\nelse:\n print('No')", "string_list = input().split(' ')\nD = int(string_list[0])\nT = int(string_list[1])\nS = int(string_list[2])\nkyori = T * S\nif D<=kyori:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s140204289', 's597862044'] | [9076.0, 8992.0] | [21.0, 30.0] | [162, 166] |
p02570 | u802662134 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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")'] | ['Runtime Error', 'Accepted'] | ['s406440531', 's269275380'] | [8972.0, 9112.0] | [23.0, 31.0] | [83, 85] |
p02570 | u803578305 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = list(input().split())\nif x[0] / x[2] <= x[3]:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\n \nif a <= b * c:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\nif a / b <= c:\n print("Yes")\nelse:\n print("No")', 'x = list(map(int, input().split()))\nif x[0] / x[2] <= x[3]:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\n\nif a <= b * c:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\nif (a / b) <= c:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\nif (a / c) <= b:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\n\nif a <= b * c:\n print("Yes")\nelse:\n print("No")', 'x = list(map(int, input().split()))\nif x[0] / x[2] <= x[3]:\n print("Yes")\nelse:\n print("No")', "a, b, c = map(int, input().spulit())\nif a / c <= b:\n print('Yes')\nelse:\n print('No')", 'a, b, c = map(int, input().spulit())\nif (a / c <= b):\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\n \nif a <= b * c:\n \tprint("Yes")\nelse:\n \tprint("No")', 'a, b, c = map(int, input().spulit())\nif a / c = b:\n print("Yes")\nelse:\n print("No")', 'a, b, c = input().split()\nif a / c <= b:\n print("Yes")\nelse:\n print("No")\n', 'x = list(input().split())\nif x[0] / x[2] <= x[3]:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\n\nif a <= b*c:\n print("Yes")\nelse:\n print("No")', 'a=input()\nb=input()\nc=input()\n\nif a/c<b:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().spulit())\nif a / c <= b:\n print("Yes")\nelse:\n print("No")', 'a, b, c = map(int, input().split())\n \nif a <= b * c:\n \tprint("Yes")\nelse:\n \tprint("No")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s058203898', 's077310437', 's115961890', 's143655394', 's215491720', 's357278454', 's432785808', 's462001703', 's554870823', 's658165035', 's680081037', 's694771375', 's739583955', 's855146518', 's857497503', 's862933289', 's875758975', 's945836660', 's327956141'] | [9024.0, 9068.0, 9076.0, 9160.0, 9088.0, 9068.0, 8648.0, 9076.0, 9076.0, 9024.0, 8972.0, 9064.0, 8852.0, 9076.0, 9068.0, 9012.0, 9072.0, 9056.0, 9120.0] | [27.0, 24.0, 24.0, 32.0, 28.0, 24.0, 25.0, 26.0, 25.0, 28.0, 29.0, 24.0, 25.0, 26.0, 25.0, 24.0, 20.0, 27.0, 30.0] | [84, 88, 86, 94, 87, 88, 88, 87, 94, 86, 88, 90, 85, 76, 84, 85, 75, 86, 89] |
p02570 | u803865203 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 Counter\n\nclass UnionFind:\n def __init__(self,num:int):\n self.r = [-1 for i in range(num)]\n def root(self,x:int):\n if(self.r[x] < 0):\n return x\n self.r[x] = self.root(self.r[x])\n return self.r[x]\n def unite(self,x:int,y:int):\n rx = self.root(x)\n ry = self.root(y)\n if(rx == ry):\n return False\n if(self.r[rx] > self.r[ry]):\n rx,ry = ry,rx\n self.r[rx] += self.r[ry]\n self.r[ry] = rx\n return True\n def size(self,x:int):\n return -self.r[self.root(x)]\n\nN,M = map(int,input().split())\ngroup = UnionFind(N)\nfor i in range(M):\n A,B = map(int,input().split())\n group.unite(A-1,B-1)\nans = 0\nfor i in range(N):\n ans = max(ans,group.size(i))\nprint(group.r)\nprint(ans)\n', 'from collections import Counter\n\nclass UnionFind:\n def __init__(self,num:int):\n self.r = [-1 for i in range(num)]\n def root(self,x:int):\n if(self.r[x] < 0):\n return x\n self.r[x] = self.root(self.r[x])\n return self.r[x]\n def unite(self,x:int,y:int):\n rx = self.root(x)\n ry = self.root(y)\n if(rx == ry):\n return False\n if(self.r[rx] > self.r[ry]):\n rx,ry = ry,rx\n self.r[rx] += self.r[ry]\n self.r[ry] = rx\n return True\n def size(self,x:int):\n return -self.r[self.root(x)]\n\nN,M = map(int,input().split())\ngroup = UnionFind(N)\nfor i in range(M):\n A,B = map(int,input().split())\n group.unite(A-1,B-1)\nans = 0\nfor i in range(N):\n ans = max(ans,group.size(i))\nprint(ans)\n', 'D,T,S = map(int,input().split())\nif(D>T*S):\n print("No")\nelse:\n print("Yes")\n'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s206794372', 's363085280', 's228865129'] | [9484.0, 9480.0, 9156.0] | [28.0, 29.0, 28.0] | [817, 802, 83] |
p02570 | u804613609 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['inp_list = input().spilt()\nif inp_list[0] / inp_list[1] <= 80:\n print("Yes") \nelse:\n print("No")', 'inp_list = input().spilt()\nif (inp_list[0] / inp_list[1]) <= 80:\n print("Yes") \nelse:\n print("No")', 'inp_ = input()\nimp_list = imp_.spilt()\nif inp_list[0] / inp_list[1] <= 80:\n print("Yes") \nelse:\n print("No")', 'inp = input()\ninp_list = inp.split()\ninp_list = [int(i) for i in inp_list] \nif inp_list[0] / inp_list[1] <= inp_list[2]:\n print("Yes") \nelse:\n print("No")\n'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s058896473', 's223775810', 's498866059', 's012978457'] | [9020.0, 9084.0, 9096.0, 9160.0] | [29.0, 22.0, 22.0, 30.0] | [102, 104, 114, 161] |
p02570 | u805102038 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['AllInput = input("Enter Distance,Time Taken and Speed Separated by Space")\nPara = AllInput.split()\n\nif (int (Para[0])/int (Para[1])) <= int (Para[2]):\n print("Yes")\nelse:\n print("NO")', 'AllInput = input("Enter Distance,Time Taken and Speed Separated by Space")\nD,T,S= map(int,AllInput.split())\n\nif (S*T) <= D:\n print("Yes")\nelse:\n print("No")', 'AllInput = input("Enter Distance,Time Taken and Speed Separated by Space")\nD,T,S= map(int,AllInput.split())\nprint("Distance Needed =", D)\nprint("Distance Covered =", (S*T))\n\nif (S*T) <= D:\n print("Yes")\nelse:\n print("NO")', 'AllInput = input("Enter Distance,Time Taken and Speed Separated by Space")\nPara = AllInput.split()\n\nif ((float(Para[0])/float(Para[1])) <= float(Para[2]):\n print("Yes")\nelse:\n print("NO")', '\nD,T,S= map(int,input().split())\n\nif (S*T) <= D:\n print("Yes")\nelse:\n print("No")', 'AllInput = input("Enter Distance,Time Taken and Speed Separated by Space")\nPara = AllInput.split()\n\nif (float(Para[0])/float(Para[1])) <= float(Para[2]):\n print("Yes")\nelse:\n print("NO")', '\nD,T,S= map(int,input().split())\n\nif (S*T) >= D:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s188764983', 's239437418', 's412618438', 's422326366', 's717979827', 's884219213', 's242564058'] | [9168.0, 9092.0, 9068.0, 8988.0, 9108.0, 8996.0, 9140.0] | [28.0, 28.0, 30.0, 24.0, 27.0, 34.0, 27.0] | [189, 162, 227, 193, 87, 192, 87] |
p02570 | u806988802 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = input()\na_list = input().split(" ")\n\nb = [int(a) for a in a_list]\nmax = 10**9 + 7\n\nsum = 0\nfor i in range(0, len(b)-1):\n for j in range(i+1, len(b)):\n sum += b[i] * b[j]\n sum = sum % max\nprint(sum)\n\n', "import sys\n\nd = sys.argv[1]\nt = sys.argv[2]\ns = sys.argv[3]\n\nif s * t < d:\n return 'No'\nelse:\n return 'Yes'\n", 'd, t, s = input().split(" ")\n \nif int(s) * int(t) < int(d):\n print(\'No\')\nelse:\n print(\'Yes\')'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s172939453', 's423255156', 's349316776'] | [8968.0, 9104.0, 9156.0] | [29.0, 27.0, 33.0] | [210, 110, 94] |
p02570 | u808817704 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = tuple(int(x) for x in input().split())\nif S*T <= D:\n print('Yes')\nelse:\n print('No')", "D, T, S = tuple(int(x) for x in input().split())\nif S*T >= D:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s824083941', 's477792770'] | [9168.0, 9116.0] | [31.0, 29.0] | [96, 100] |
p02570 | u811535874 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\ntotal = 0\nfor i in range(n - 1):\n temp = []\n for j in range(i + 1, n):\n temp.append((a[i]*a[j]) % (10**9 + 7))\n total += sum(temp) % (10**9 + 7)\n\nprint(total % (10**9 + 7))', "d, t, s = map(int, input().split())\n\nif d / s > t:\n print('No')\nelse:\n print('Yes')"] | ['Runtime Error', 'Accepted'] | ['s914305017', 's074489151'] | [9196.0, 9152.0] | [30.0, 33.0] | [232, 85] |
p02570 | u813297429 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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/s <=t:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s512459767', 's802476782'] | [9132.0, 9120.0] | [30.0, 26.0] | [80, 79] |
p02570 | u813590793 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nx=s*t\n\nif x>=d:\n\n\tprint('Yes')else:\n\n\tprint('No')", "d, t, s=list(map(int,input().split()))\nx=s*t\nif x>=d:\n\tprint('Yes')\nelse:\n\tprint('No')"] | ['Runtime Error', 'Accepted'] | ['s191748768', 's568050807'] | [8952.0, 9156.0] | [29.0, 27.0] | [89, 86] |
p02570 | u815043514 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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=str(input())\nb=str(input())\n\nans=[]\nans.append(len(b))\nfor i in range(len(a)-len(b)+1):\n dif=0\n k=a.find(b[i])\n for j in range(len(b)):\n if a[i+j]!=b[j]:\n dif+=1\n ans.append(dif)\nprint(min(ans))', 'D,T,S=map(int,input().split())\nif D/S<=T:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s556514255', 's352982700'] | [9124.0, 9080.0] | [29.0, 32.0] | [234, 76] |
p02570 | u815447067 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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, T, S = map(int, input().split())\nprint("Yes" if D <= (T*S) else \'No\')'] | ['Wrong Answer', 'Accepted'] | ['s113681900', 's276187523'] | [9060.0, 9168.0] | [27.0, 26.0] | [7, 72] |
p02570 | u816631826 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nif (s*t) >= d :\n print ('Yes')\n \nelse:\n print ('No')\n\n", "d=input()\nt=input()\ns=input()\n\n \n if (s*t >= d):\n print ('Yes')\n \n else:\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'] | ['s285411461', 's734913486', 's225226744'] | [9108.0, 8936.0, 9152.0] | [27.0, 24.0, 25.0] | [110, 112, 90] |
p02570 | u817565863 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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: print('No')\n", "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/s<=t:\n print('Yes')\nelse: print('No')\n"] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s102451345', 's725310214', 's622523878'] | [9140.0, 9148.0, 9052.0] | [29.0, 30.0, 30.0] | [76, 76, 75] |
p02570 | u825116851 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | [" GNU nano 4.8 a.py 変更済み \ndef read():\n D, T, S = map(int, input().split(' '))\n return D, T, S\n\ndef func(D, T, S):\n return D / S <= T\n\n\nif __name__ == '__main__':\n D, T, S = read()\n print('Yes' if func(D, T, S) else 'No')\n", "def read():\n D, T, S = map(int, input().split(' '))\n return D, T, S\n\ndef func(D, T, S):\n return D / S <= T\n\n\nif __name__ == '__main__':\n D, T, S = read()\n print('Yes' if func(D, T, S) else 'No')\n"] | ['Runtime Error', 'Accepted'] | ['s316333339', 's780675701'] | [8932.0, 9100.0] | [25.0, 28.0] | [372, 210] |
p02570 | u829796346 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 pypy3\n# N,M = map(int,sys.stdin.readline().split())\n# a = tuple(map(int,sys.stdin.readline().split())) # single line with multi param\n# a = tuple(int(sys.stdin.readline()) for _ in range(N)) # multi line with single param\n# a = tuple(tuple(map(int,sys.stdin.readline().rstrip().split())) for _ in range(N)) # multi line with multi param\n\n# N = int(sys.stdin.readline())\n# INF = float("inf")\nimport math,sys\n\nn = int(sys.stdin.readline())\na = tuple(map(int,sys.stdin.readline().split()))\n#n = int(input())\n#a = list(map(int,input().split()))\ng = math.gcd(a[0],a[1])\nfor i in range(2,n):\n g = math.gcd(g,a[i])\nM = max(a)\nacc = a[0]\nfor i in range(n):\n acc = math.gcd(acc,a[i])\nif acc != 1:\n print("not coprime")\n exit()\n\nLIMIT=max(a)\nminPrime = [0]*(LIMIT+1)\nminPrime[1] = 1\ndef make():\n for i in range(2,LIMIT+1):\n if minPrime[i] == 0:\n minPrime[i] = i\n #print(i)\n for j in range(i+i,LIMIT+1,i):\n #print(i,j)\n if minPrime[j] == 0:\n minPrime[j] = i\nmake()\ndef factrial(N):\n ret = []\n while minPrime[N] != N:\n ret.append(minPrime[N])\n N = N//minPrime[N]\n if N != 1:\n ret.append(N)\n return ret\n\njudge = set([])\n\nfor e in a:\n asf = set(factrial(e))\n if judge & asf != set():\n print("setwise coprime")\n exit()\n #judge |= asf\n judge = judge | asf #too slow\nprint("pairwise coprime")', '#!/usr/bin/env python3\n# N,M = map(int,sys.stdin.readline().split())\n# a = tuple(map(int,sys.stdin.readline().split())) # single line with multi param\n# a = tuple(int(sys.stdin.readline()) for _ in range(N)) # multi line with single param\n# a = tuple(tuple(map(int,sys.stdin.readline().rstrip().split())) for _ in range(N)) # multi line with multi param\n\n# N = int(sys.stdin.readline())\n# INF = float("inf")\nimport sys,collections\n\nD,T,S = map(int,sys.stdin.readline().split())\n\nif D <= T * S:\n print("Yes")\n exit()\nprint("No")\n'] | ['Runtime Error', 'Accepted'] | ['s861312420', 's549161032'] | [9176.0, 9464.0] | [27.0, 39.0] | [1495, 569] |
p02570 | u830710067 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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/python3\n \ncmdvar_numlist=input()\ncmdvar_spritd=cmdvar_numlist.split()\nD,T,S=list(map(int,cmdvar_spritd))\n\nif D/S<T:\n print("yes")\nelse:\n print("No")', '#!/usr/bin/python3\n \ncmdvar_numlist=input()\ncmdvar_spritd=cmdvar_numlist.split()\nD,T,S=list(map(int,cmdvar_spritd))\n\nif D/S<=T:\n print("yes")\nelse:\n print("No")', '#!/usr/bin/python3\n \ncmdvar_numlist=input()\ncmdvar_spritd=cmdvar_numlist.split()\nD,T,S=list(map(int,cmdvar_spritd))\n\nif D/S<=T:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s403378604', 's472057046', 's449380987'] | [9128.0, 9132.0, 9164.0] | [29.0, 29.0, 25.0] | [165, 166, 166] |
p02570 | u832039789 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nr = 0\n\nd, t, s = map(int, input().split())\nif d * s <= t:\n print('Yes')\nelse:\n print('No')\n\n# print(r)\n", "\nd, t, s = map(int, input().split())\nif d <= t * s:\n print('Yes')\nelse:\n print('No')\n"] | ['Wrong Answer', 'Accepted'] | ['s966927545', 's778080960'] | [9144.0, 9164.0] | [32.0, 31.0] | [162, 148] |
p02570 | u843764230 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()) \ntime = d/s\nif time >= t:\n print("Yes")\nelse:\n print("No")', 'd,t,s = map(int, input().split()) \ntime = d/s\nif time > t:\n print("Yes")\nelse:\n print("No")', 'd,t,s = map(double, input().split()) \ntime = d/s\nif time > t:\n print("Yes")\nelse:\n print("No")', 'd,t,s = map(int, input().split()) \ntime = d/s\nif time <= t:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s062606285', 's508089939', 's679794167', 's667795372'] | [8976.0, 9020.0, 9092.0, 9068.0] | [28.0, 25.0, 26.0, 29.0] | [99, 98, 101, 99] |
p02570 | u844123804 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = map(lambda x: int(x), input().split())\n\nif num[0]/num[2]<=num[1]: print('Yes')\nelse: print('No')", "num = list(map(lambda x: int(x), input().split()))\n\nif num[0]/num[2]<=num[1]: print('Yes')\nelse: print('No')"] | ['Runtime Error', 'Accepted'] | ['s681033759', 's545210385'] | [9084.0, 9160.0] | [28.0, 31.0] | [102, 108] |
p02570 | u847033024 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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')", "d, t, s = map(int, input().split())\nif s * t >= d:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s004437238', 's185574613', 's570042130', 's688904408'] | [9160.0, 9156.0, 9132.0, 9132.0] | [34.0, 27.0, 36.0, 27.0] | [84, 84, 84, 85] |
p02570 | u848097937 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = inputlist()\ntime = D//S + int(D%S != 0)\nif time <= T:\n print("Yes")\nelse:\n print("No")', '#template\ndef inputlist(): return [int(j) for j in input().split()]\n#template\n"""\nH,W = inputlist()\nst = inputlist()\ngl = inputlist()\nmaze = [\'0\']*H\nfor i in range(H):\n maze[i] = list(input())\ntable = [[10**9+7]*W for _ in range(H)]\n\n"""\nD,T,S = inputlist()\ntime = D//S + int(D%S != 0)\nif time <= T:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s520936780', 's187520965'] | [9032.0, 9144.0] | [24.0, 25.0] | [100, 342] |
p02570 | u850820481 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["data=list(map(int,input().split()))\nif data[0]/data[1]<=data[2]:\n print('yes')\nelse:\n print('No')", "data=list(map(int,input().split()))\nif data[0]/data[1]<=data[2]:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Accepted'] | ['s262650157', 's226295151'] | [9080.0, 9100.0] | [27.0, 28.0] | [103, 103] |
p02570 | u852790844 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nimport numpy as np\n\nreadline = sys.stdin.readline\nread = sys.stdin.read\nMOD = 10**9 + 7\n\nn = int(input())\na = np.array(readline().split(), dtype=np.uint64)\nr = np.cumsum(a[::-1])[::-1]\nr &= MOD\nx = a[:-1] * r[1:]\nx %= MOD\nans = int(np.sum(x) % MOD)\nprint(ans)\n', 'd, t, s = map(int, input().split())\nans = "No" if d > t * s else "Yes"\nprint(ans)'] | ['Runtime Error', 'Accepted'] | ['s835084986', 's480654821'] | [27092.0, 9148.0] | [121.0, 28.0] | [271, 81] |
p02570 | u854962015 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nS=0\nM=0\nfor i in A:\n S+=i\nfor i in A:\n S-=i\n M+=(S*i)%mod\nprint(M%mod)', 'D,T,S=map(int,input().split())\nif T>=D/S:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s801391288', 's716011700'] | [9072.0, 9160.0] | [28.0, 30.0] | [139, 80] |
p02570 | u856398397 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 Solution:\n def solve(self, D, T, S):\n time = D/S\n if time <= T:\n return True\n else:\n return False\n\nA = Solution()\nD,T,S = map(int, input().split())\nprint(A.solve(D,T,S)\n ', "class Solution:\n def solve(self, D, T, S):\n time = D/S\n if time <= T:\n return 'Yes'\n else:\n return 'No'\n\nif __name__ == '__main__':\n D, T, S = map(int, input().split())\n A = Solution()\n print(A.solve(D, T, S))"] | ['Runtime Error', 'Accepted'] | ['s965520226', 's012788749'] | [8852.0, 9196.0] | [27.0, 26.0] | [199, 264] |
p02570 | u856564576 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = "yes" if d < t*s else "no"\nprint(ans)', 'd, t, s = map(int, input().split(" "))\nans = "Yes" if d <= t*s else "No"\nprint(ans)\n'] | ['Wrong Answer', 'Accepted'] | ['s305652114', 's042010856'] | [9152.0, 9040.0] | [27.0, 28.0] | [82, 84] |
p02570 | u858114983 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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() for l in range(2)]\ncount = 0\nN = int(a[0][0])\n \nfor i in range(N):\n for j in range(i):\n if i != j:\n count = (int(a[1][i])*int(a[1][j])) % 1000000007 + count\ncount = count % 1000000007\nprint(count)\n', "D,T,S=(int(x) for x in input().split())\nif D >S*T:\n print('no')\nelif:\n print('yes')", "D,T,S=(int(x) for x in input().split())\nif D >S*T:\n print('no')\nelse:\n print('yes')\n", "D,T,S=(int(x) for x in input().split())\nif D >S*T:\n print('no')\nelse:\n print('yes')\n", "D,T,S=(int(x) for x in input().split())\nif D >S*T:\n print('No')\nelse:\n print('Yes')\n"] | ['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s172468519', 's199801709', 's522944029', 's782908765', 's428835512'] | [9140.0, 8952.0, 9156.0, 9168.0, 9148.0] | [29.0, 27.0, 29.0, 29.0, 34.0] | [239, 85, 86, 86, 86] |
p02570 | u860966226 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['data = input()\nn = [int(x) for x in data]\nif n[1] * n[2] < n[0]: print("No")\nelse print("Yes")\n', 'data = input()\nn = [int(x) for x in data.split()]\nif n[1] * n[2] < n[0]: print("No")\nelse: print("Yes")\n'] | ['Runtime Error', 'Accepted'] | ['s724624207', 's683544867'] | [8976.0, 9172.0] | [24.0, 31.0] | [95, 104] |
p02570 | u863370423 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ['\nstr_in = input()\nnum = [int(n) for n in str_in.split()]\nnum =list(map(int, str_in.strip().split())) \n#print(num) #D,T,S\n\n\nif num[1] > (num[0]/num[2]):\n print("Yes\\n\\nIt takes",num[0]/num[2],"minutes to go",num[0],"meters to the place at a speed of",num[2],\n "meters per minute. They have planned to meet in",num[1],"minutes so he will arrive in time.")\nelif num[1] == (num[0]/num[2]):\n print("Yes\\n\\nIt takes",num[0]/num[2],"minutes to go ",num[0],"meters to the place at a speed of",num[2],\n "meters per minute. They have planned to meet in",num[1],"minutes so he will arrive just on time.")\nelse:\n print("No\\n\\nHe will be late.")\n\n\n', "d=float(input())\nt=float(input())\ns=float(input())\n\n\nif (d/t) <= s:\n print ('Yes')\n \nelse:\n print ('No')\n\n", "d=input()\nt=input()\ns=input()\n\n \n if s*t >= d:\n print ('Yes')\n \n else:\n print ('No')", "d=float(input())\nt=float(input())\ns=float(input())\n \nif (int(d/t)) <= s:\n print ('Yes')\n \nelse:\n print ('No')\n\n", '\nstr_in = input()\nnum = [int(n) for n in str_in.split()]\nnum =list(map(int, str_in.strip().split())) \n#print(num) #D,T,S\n\n\nif num[1] > (num[0]/num[2]):\n print("Yes")\nelif num[1] == (num[0]/num[2]):\n print("Yes")\nelse:\n print("No")\n\n\n'] | ['Wrong Answer', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s794035549', 's799310648', 's923060660', 's983568272', 's837000844'] | [9084.0, 9028.0, 8832.0, 9020.0, 9068.0] | [33.0, 21.0, 25.0, 26.0, 27.0] | [708, 115, 110, 123, 300] |
p02570 | u864006187 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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,x,t=map(int,input().split())\nif n%x!=0:\n print((n//x+1)*t)\nelse:\n print((n//x)*t)', 'd,t,s=map(int,input().split())\nif s*t>=d:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s310127766', 's057820154'] | [9096.0, 9144.0] | [28.0, 26.0] | [89, 80] |
p02570 | u864090097 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\n\nsum = 0\nfor i in range (N):\n sum += A[i]\n\nans = 0\nfor i in range(N):\n sum -= A[i]\n ans += (A[i] * sum) % MOD\n\nans = ans % MOD\nprint(ans)', 'D, T, S = map(int, input().split())\n\nTS = T * S\n\nif D <= TS:\n ans = "Yes"\nelse:\n ans = "No"\n\nprint(ans)'] | ['Runtime Error', 'Accepted'] | ['s550958451', 's334734746'] | [9008.0, 9164.0] | [27.0, 30.0] | [213, 109] |
p02570 | u867539710 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi will leave his house now and go straight to the place at a speed of S meters per minute. Will he arrive in time? | ["for testcase in range(int(input())):\n\tD,T,S=map(int,input().split())\n\tspeed=D/T\n\tif speed>=S:\n\t\tprint('Yes')\n\telse:\n\t\tprint('No')\t", "import math,sys,os,collections,functools\nif(os.path.exists('input.txt')):\n\tsys.stdin=open('input.txt','r')\n\tsys.stdout=open('output.txt','w')\nfor testcase in range(int(input())):\n\tD,T,S=map(int,input().split())\n\tt=D/S\n\tif t<=T:\n\t\tprint('Yes')\n\telse:\n\t\tprint('No')\t\n\t\t ", "for testcase in range(int(input())):\n\tD,T,S=map(int,input().split())\n\td=S*T\n\tif d>=D:\n\t\tprint('Yes')\n\telse:\n\t\tprint('No')\t\n\t\t ", "D,T,S=map(int,input().split())\nt=D/S\nif t<=T:\n print('Yes')\nelse:\n print('No')\t"] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s341832916', 's716813565', 's760683343', 's621894912'] | [9140.0, 9568.0, 9156.0, 9156.0] | [24.0, 31.0, 24.0, 30.0] | [130, 308, 166, 81] |
p02570 | u867616076 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 <= t*s):\n print("Yes")\nelse:\n print("No") \n', 'd,t,s = map(int, input().split())\nif(d <= t*s):\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s556118001', 's365277010'] | [9120.0, 9156.0] | [26.0, 28.0] | [108, 87] |
p02570 | u868055170 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()\nd = float(D)\nt = float(T)\ns = float(S)\n\na = float(d / s)\nprint(a)\n\n\nif a > t:\n print("No")\nelse:\n print("Yes")\n', "D, T, S = input1().split()\nD=int(D)\nT=int(T)\nS=int(S)\n\nif D // S > T:\n print('No')\nelse:\n print('Yes')", 'D,T,S=map(int,input().split())\n\nif (D/S)>T:\n print("No")\nelse:\n print("Yes")'] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s364815917', 's761584615', 's531001761'] | [9044.0, 9104.0, 9136.0] | [26.0, 31.0, 30.0] | [143, 108, 78] |
p02570 | u868907609 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nD, T, S = map(int, input().split())\n\nif S*T >= D:\n print(Yes)\nelif:\n print(No)', "import numpy as np\n\nD, T, S = map(int, input().split())\n\nif S*T >= D:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s044824198', 's397783777'] | [9012.0, 27132.0] | [25.0, 129.0] | [104, 108] |
p02570 | u874092557 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()\n\nmin = 100000\nfor i in range(len(S)) :\n for j in range(len(S),i-1,-1) :\n if (S[i:j] in T) :\n if (min > len(T) - len(S[i:j])) and (i >= T.index(S[i:j]) and j<=len(T)-T.index(S[i:j]) ) :\n min = len(T) - len(S[i:j])\n\nprint(min)', 'S = input()\nT = input()\n\nres = len(T)\nfor i in range(len(S)) :\n for j in range(i,len(S)) :\n if (S[i:j] in T) and (i>=T.index(S[i:j])) :\n diff = len(T) - len(S[i:j])\n if res>=diff :\n res = diff\n\nprint(res)', 'D,T,S = map(int,input().split())\nif (D/S <= T) :\n print("Yes")\nelse :\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s244239220', 's364721434', 's921897202'] | [9080.0, 9020.0, 9016.0] | [27.0, 27.0, 29.0] | [284, 243, 88] |
p02570 | u875584014 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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())\nlst=list(map(int,input().split()))\nA=0\nfor i in range(N-1):\n for j in range(i+1,N):\n A+=(lst[i]%(10**9+7))*(lst[j]%(10**9+7))\nprint(A%(10**9+7))', 'N=int(input())\nlst=list(map(int,input().split()))\nA=0\nfor i in range(N-1):\n for j in range(i+1,N):\n A+=(lst[i]%(10**9+7))*(lst[j]%(10**9+7))\nprint(A%(10**9+7))', "D=int(input())\nT=int(input())\nS=int(input())\nif D<=T*S:\n print('Yes')\nelif D>T*S:\n print('No')", "D,T,S=map(int,input().split())\nif D<=T*S:\n print('Yes')\nelif D>T*S:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s246943994', 's342382185', 's409297378', 's495002876'] | [9176.0, 9112.0, 9180.0, 9156.0] | [28.0, 26.0, 29.0, 29.0] | [163, 163, 96, 82] |
p02570 | u883866798 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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())\nresult = D / S\nif T <= result :\n print('Yes')\nelse:\n print('No') ", "D,T,S = map(input().split())\nresult = D / S\nif T <= result :\n print('Yes')\nelse:\n print('No') ", "D,T,S = map(int,input().split())\nresult = D / S\nif T >= result:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s484445755', 's921095919', 's974934799'] | [9152.0, 8808.0, 9092.0] | [31.0, 22.0, 30.0] | [100, 97, 98] |
p02570 | u883983516 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 s*t<=d:\n print("Yes")\nelse:\n print("No")', 'd,t,s=[int(x) for x in input().split(\' \')]\nif s*t>=d:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s113497013', 's609430122'] | [9156.0, 9088.0] | [32.0, 30.0] | [92, 92] |
p02570 | u887726241 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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")\nelse:\n print("NO")', 'd,t,s=list(map(int,input()))\nif d <= (s*t):\n print("YES")\nelif:\n print("NO")', 'd,t,s=list(map(int,input().split()))\nif d<=s*t:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Runtime Error', 'Accepted'] | ['s392862908', 's954192850', 's011185687'] | [9148.0, 9020.0, 9092.0] | [30.0, 21.0, 30.0] | [82, 78, 82] |
p02570 | u892797057 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()\n\nmin_count = len(T)\nfor s in range(len(S) - len(T) + 1): # T cannot exceed the length of S\n matched = 0\n for i in range(len(T)):\n # print(f'S[{s + i}] == T[{i}]')\n if S[s + i] == T[i]:\n matched += 1\n count = len(T) - matched\n if count < min_count:\n min_count = count\nprint(min_count)", "inputs = input().split()\nD = int(inputs[0])\nT = int(inputs[1])\nS = int(inputs[2])\n\nprint('Yes' if D / S <= T else 'No') "] | ['Runtime Error', 'Accepted'] | ['s254123506', 's027583887'] | [9100.0, 9156.0] | [28.0, 30.0] | [352, 120] |
p02570 | u893661063 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 = str(input())\nT = str(input())\nans = 10000\nfor i in range(len(S)-len(T)+1):\n c = S[i:] \n cnt = 0\n for j in range(len(T)):\n if str(T[j]) != str(c[j]):\n cnt += 1\n if cnt = 0:\n ans = 0\n elif ans > cnt and cnt >=1:\n ans = cnt\nprint (ans)', 'S = str(input())\nT = str(input())\nans = 10000\nfor i in range(len(S)-len(T)+1):\n c = S[i:] \n cnt = 0\n for j in range(len(T)):\n if str(T[j]) != str(c[j]):\n cnt += 1\n if cnt = 0:\n ans = 0\n if ans > cnt and cnt >=1:\n ans = cnt\nprint (ans)', 'D, T, S =map(int, input().split())\nif T >= D/S:\n print ("Yes")\nelse:\n print ("No")\n'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s198678627', 's626025085', 's453730087'] | [9028.0, 8964.0, 9148.0] | [34.0, 26.0, 36.0] | [284, 282, 89] |
p02570 | u894606367 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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(float,raw_input().split())\ndef intime(D,T,S):\n if D<=T*S:\n print('Yes')\n else:\n print('No')", "def InTimeFunc(D, T, S):\n if D <= T*S:\n print('Yes')\n else:\n print('No')\n ", "A, B, C = map(int, input().split())\nif A <= B*C:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Wrong Answer', 'Accepted'] | ['s724482180', 's771640324', 's425126682'] | [8848.0, 8996.0, 9160.0] | [26.0, 23.0, 27.0] | [111, 85, 83] |
p02570 | u900776974 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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=intput().split()\nd=int(d)\nt=int(t)\ns=int(s)\nd1=s*t\nif d<=d1:\n print("Yes")\nelse:\n print("No)\n', 'd,t,s=intput().split()\nd=int(d)\nt=int(t)\ns=int(s)\nd1=s*t\nif d<=d1:\n print("Yes")\nelse:\n print("No")\n', 'd,t,s=intput().split()\nd1=s*t\nif d<=d1:\n print("Yes")\nelse:\n print("No)', 'd,t,s=input().split()\nd=int(d)\nt=int(t)\ns=int(s)\nd1=s*t\nif d<=d1:\n print("Yes")\nelse:\n print("No")\n'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s411617042', 's517829189', 's888343185', 's144028822'] | [8848.0, 8868.0, 8968.0, 9152.0] | [30.0, 26.0, 23.0, 33.0] | [101, 102, 73, 101] |
p02570 | u901144784 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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(s*t==d):\n print("Yes")\nelse:\n print("No")', 'd,t,s=(int(i) for i in input().split())\nif(s*t>=d):\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s710664038', 's113326055'] | [9116.0, 9164.0] | [25.0, 28.0] | [86, 86] |
p02570 | u904331908 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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())\nlist1 = list(map(int,input().split()))\n\nmod = 10 ** 9 + 7\ntotal = 0\ny = sum(list1)\n\nfor i in range(0,n-1):\n x = y- sum(list1[:i+1])\n total += list1[i] * x % mod\n\ntotal = total % mod\nprint(total)\n', 'd,t,s = map(int,input().split())\nif (t * s) >= d :\n print("Yes")\nelse :\n print("No")\n'] | ['Runtime Error', 'Accepted'] | ['s426618730', 's765707766'] | [9176.0, 9144.0] | [25.0, 32.0] | [218, 91] |
p02570 | u905029819 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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(int()),input(int()), input(int())\n\nif S*T >=D:\n print('Yes')\nelse:\n print('No')", "D=input(int())\nT=input(int())\nS=input(int())\n\nif S*T >=D:\n print('Yes')\nelse:\n print('No')", "D=input(int())\nT=input(int())\nS=input(int())\n\nif S*T >=D:\n print('Yes')\nelse:\n print('No')", "D=input(int())\nT=input(int())\nS=input(int())\n\nif S*T >=D:\n print('Yes)\nelse:\n print('No')", "D,T,S = input().split()\n\nD = int(D)\nT = int(T)\nS = int(S)\n\n\nif S*T >=D:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s066502873', 's105405133', 's244941350', 's588462302', 's430712092'] | [9076.0, 9084.0, 9028.0, 8924.0, 9112.0] | [21.0, 21.0, 24.0, 25.0, 31.0] | [95, 98, 92, 97, 106] |
p02570 | u910263818 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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( d/s <= t):\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s487297385', 's917193940'] | [9092.0, 9152.0] | [32.0, 26.0] | [83, 81] |
p02570 | u910358825 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nn=input()\nl=list(map(int, input().split()))\nres=0\n#print(f"le{len(l)}")\nl.append(0)\nl.reverse()\nfor i in range(len(l)): \n print(l[len(l)-1-i],numpy.cumsum(l)[len(l)-i-2])\n res+=l[len(l)-1-i]*numpy.cumsum(l)[len(l)-i-2]\n \nprint(res%(10**9+7))\n#print(res)', 'n=input()\nl=list(map(int, input().split()))\nres=0\n#print(f"le{len(l)}")\nfor i in range(len(l)):\n for j in range(i+1,len(l)):\n res+=l[i]*l[j]\n #print(res)\nprint(res%(10**9+7))', 'd,t,s=map(int, input().split())\nif d/s<=t:\n print("Yes")\nelif:\n print("No")', 'import numpy\nn=int(input())\nl=list(map(int, input().split()))\nres=0\nl.append(0)\nl.reverse()\ncum=numpy.cumsum(l)\nfor i in range(n+1):\n res+=l[n-i]*cum[n-i-1]\nprint(res%(10**9+7))', 'd,t,s=map(int, input().split())\nif d/s<=t:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted'] | ['s177839448', 's248625020', 's414064284', 's480500786', 's501520557'] | [27044.0, 8928.0, 8948.0, 26996.0, 9088.0] | [111.0, 25.0, 22.0, 114.0, 33.0] | [297, 191, 77, 180, 77] |
p02570 | u910536093 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\nd, t, s = list(map(int, input().split()))\n\na = math.ceil(d / s)\n\nif (a <= t):\n print("yes")\nelse:\n print("No")\n', 'import math\n\nd, t, s = list(map(int, input().split()))\n\nif ((s * t) >= d):\n print("yes")\nelse:\n print("No")\n', 'd, t, s = list(map(int, input().split()))\n\nif ((s * t) >= d):\n print("Yes")\nelse:\n print("No")\n'] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s123112367', 's267366939', 's092116726'] | [9148.0, 9156.0, 9088.0] | [30.0, 31.0, 26.0] | [130, 114, 101] |
p02570 | u910632349 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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")'] | ['Wrong Answer', 'Accepted'] | ['s479683650', 's015647163'] | [9156.0, 9152.0] | [28.0, 31.0] | [80, 80] |
p02570 | u913565745 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\n\n\nstdin = io.StringIO(__INPUT)\n\nD,T,S = [ int(x) for x in stdin.readline().rstrip().split()]\n\nif ( S * T) > D:\n print('Yes')\nelse:\n print('No')", "from sys import stdin\n\n\nD,T,S = [ int(x) for x in stdin.readline().rstrip().split()]\n\nif ( S * T) >= D:\n print('Yes')\nelse:\n print('No')\n"] | ['Runtime Error', 'Accepted'] | ['s198296024', 's418161944'] | [9092.0, 9140.0] | [27.0, 33.0] | [171, 143] |
p02570 | u916338311 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['s501367743', 's878708675'] | [9156.0, 9156.0] | [32.0, 30.0] | [86, 86] |
p02570 | u918422508 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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*S>T :\n print("No")\nelse:\n print("Yes")', 'S=input()\nT=input()\nans=[]\ncount=0\nfor i1 in range(len(S)-len(T)):\n\tfor i2 in range(len(T)):\n \t\tif S[i1+i2]==T[i2]:\n count++\n else:\n ans=ans.append(count)\n count=0\nelse:\n\tprint(ans.max())', 'D,T,S=map(int,input())\nif D*S>T :\n\tprint("No")\nelse:\n\tprint("Yes")', 'D,T,S=map(int,input().split())\nif D*S>T:\n\tprint("No")\nelse:\n\tprint("Yes")', 'D,T,S=map(int,input())\nif D*S>T:\n\tprint("No")\nelse:\n\tprint("Yes")', 'D,T,S=map(int,input().split())\nif (D/S)>T:\n\tprint("No")\nelse:\n\tprint("Yes")'] | ['Runtime Error', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Accepted'] | ['s601713857', 's629036509', 's855432730', 's867176300', 's928978384', 's298325669'] | [9104.0, 8944.0, 9160.0, 9104.0, 9128.0, 9104.0] | [30.0, 22.0, 21.0, 31.0, 28.0, 27.0] | [66, 206, 66, 73, 65, 75] |
p02570 | u919274345 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 \n ', "D, T, S = map(int, input().split())\nif D <= T * S:\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s151826556', 's615596353', 's192557236'] | [9092.0, 9072.0, 9132.0] | [31.0, 27.0, 27.0] | [77, 79, 85] |
p02570 | u919519672 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 probB():\n S = input()\n T = input()\n\n maxequal = 0\n for 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 += 1\n if (count > maxequal):\n maxequal = count\n print(len(T) - maxequal if maxequal > 0 else 0)\n\n\ndef main():\n probB()\n\n\nif __name__ == '__main__':\n main()\n", 'def probA():\n D, T, S = map(int, input().split())\n\n if (D / S) <= T:\n print("Yes")\n else:\n print(\'No\')\n\n\ndef main():\n probA()\n\n\nif __name__ == \'__main__\':\n main()\n'] | ['Runtime Error', 'Accepted'] | ['s872388445', 's402435648'] | [9088.0, 9148.0] | [28.0, 33.0] | [396, 192] |
p02570 | u926266624 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 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'] | ['s368912395', 's166247213'] | [9016.0, 9156.0] | [25.0, 34.0] | [49, 83] |
p02570 | u932783739 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 d / s <= t:\n print('Yes')\nelse:\n print('No')"] | ['Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s208773903', 's726454812', 's629824162'] | [9076.0, 9156.0, 9012.0] | [28.0, 29.0, 29.0] | [89, 89, 89] |
p02570 | u933650305 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 e;se:\n print('No')", "d,t,s=map(int,input().split())\nif d<=t*s:\n print('Yes')\nelse:\n print('No')\n"] | ['Runtime Error', 'Accepted'] | ['s235683822', 's532592390'] | [8872.0, 9148.0] | [25.0, 29.0] | [77, 77] |
p02570 | u934052933 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\ndef main():\n # input = sys.stdin.readline\n s = input()\n t = input()\n\n res = len(t)\n \n for i in range(len(s)-len(t)+1):\n diff = 0\n for j in range(len(t)):\n if s[i + j] != t[j]:\n diff += 1\n res = min(res, diff)\n print(res)\nif __name__ == '__main__':\n main()", "import sys\n\ndef main():\n # input = sys.stdin.readline\n s = input()\n t = input()\n\n res = len(t)\n \n for i in range(len(s)-len(t)+1):\n diff = 0\n for j in range(len(t)):\n if s[i + j] != t[j]:\n diff += 1\n res = min(res, diff)\n print(res)\nif __name__ == '__main__':\n main()", 'import sys\n\ndef main():\n input = sys.stdin.readline\n d, t, s = map(int, input().split(" "))\n\n if s * t < d:\n print("No")\n else:print("Yes")\n\n\nif __name__ == "__main__":\n main()'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s614289822', 's846871575', 's581707050'] | [9000.0, 9132.0, 9188.0] | [26.0, 25.0, 29.0] | [366, 364, 198] |
p02570 | u934953801 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['s121738325', 's457550302'] | [9092.0, 9144.0] | [27.0, 30.0] | [74, 81] |
p02570 | u941047297 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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\ndef generate_primes(n):\n is_prime = [True] * (n + 1)\n is_prime[0] = False\n is_prime[1] = False\n for i in range(2, int(n**0.5) + 1):\n if not is_prime[i]:\n continue\n for j in range(i * 2, n + 1, i):\n is_prime[j] = False\n return [i for i in range(n + 1) if is_prime[i]]\n\ndef main(): \n n = int(input())\n A = list(map(int, input().split()))\n d = defaultdict(int)\n primes = generate_primes(max(A))\n for a in A:\n for p in primes:\n if a < p: break\n if a % p == 0:\n d[p] += 1\n d[1] = 0\n m = max(d.values())\n if m == n:\n print('not coprime')\n elif m >= 2:\n print('setwise coprime')\n else:\n print('pairwise coprime')\n \n\nif __name__ == '__main__':\n main()\n\n", "def main():\n d, t, s = map(int, input().split()) \n print('Yes' if s * t >= d else 'No')\n\nif __name__ == '__main__':\n main()\n\n"] | ['Runtime Error', 'Accepted'] | ['s715446631', 's658378854'] | [9352.0, 9148.0] | [30.0, 33.0] | [834, 135] |
p02570 | u941284420 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 <= 0:\n print("YES")\nelse:\n print("NO")', 'd, t, s = map(int, input().split())\nif d - t*s <= 0:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s053755594', 's994754098'] | [9156.0, 9152.0] | [30.0, 34.0] | [87, 87] |
p02570 | u942033906 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['s710326073', 's831687255'] | [9148.0, 9136.0] | [29.0, 24.0] | [67, 68] |
p02570 | u944396627 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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=input()\n A=list(map(int, input().split()))\n\n mod_value = 10**9 + 7\n sum_ = 0\n b_sum = 0\n for i in range(len(A)-1):\n b_sum = b_sum + A[len(A)-i-1]\n sum_ = sum_ + (A[len(A)- i - 2]*b_sum) % mod_value\n print(sum_%mod_value)\nmain()', 'def main():\n N=input()\n A=list(map(int, input().split()))\n\n mod_value = 10**9 + 7\n sum_ = 0\n for i in range(len(A)-1):\n sum_ = sum_ + A[i]*sum(A[i+1:]) % mod_value\n print(sum_ % mod_value)\nmain()', 'def main():\n D, T, S = map(int, input().split())\n if float(T) < float(D) /float(S) :\n print("No")\n else:\n print("Yes")\n #N = int(input())\n #A = [int(s) for s in input().split()]\n #\n\nmain()'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s479064874', 's957157138', 's462226179'] | [9060.0, 9032.0, 9048.0] | [31.0, 31.0, 28.0] | [277, 220, 220] |
p02570 | u945065638 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()\nmin_count\u3000=\u300010000\n\nfor i in range(len(S)-len(T)+1):\n count = 0\n for j in range(len(T)):\n if T[i+j] != S[j]:\n count += 1\n min_count =min(count,min_count)\n if min_count = 0:\n print(min_count)\n break\n\nprint(min_count)', "D ,T, S = map(int,input().split()) \nif (D )/ S <= T :\n print('Yes')\nelse:\n print('No')"] | ['Runtime Error', 'Accepted'] | ['s913339939', 's368281925'] | [8816.0, 9156.0] | [24.0, 29.0] | [300, 94] |
p02570 | u945443580 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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()\n\nD = float(input_data.split(" ")[0])\nT = float(input_data.split(" ")[1])\nS = float(input_data.split(" ")[2])\n\ntime = D/S\n\nif(time <= T):\n print("YES")\nelse:\n print("NO")', 'input_data = input()\n\nD = float(input_data.split(" ")[0])\nT = float(input_data.split(" ")[1])\nS = float(input_data.split(" ")[2])\n\ntime = D/S\n\nif(time <= T):\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s234411273', 's532905240'] | [8972.0, 9044.0] | [27.0, 29.0] | [196, 196] |
p02570 | u947664173 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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())\njikan=d/s\nif jikan<=t:\n print("YES")\nelse:\n print("NO")', 'd,t,s=map(int,input().split())\njikan=d/s\nif jikan<=t:\n print("Yes")\nelse:\n print("No")'] | ['Wrong Answer', 'Accepted'] | ['s910782890', 's778065993'] | [9156.0, 9156.0] | [28.0, 33.0] | [92, 92] |
p02570 | u952669998 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 - S*T >= 0:\n print("Yes")\nelse:\n print("No")', 'D, T, S = list(map(int, input().split()))\n\nif D - S*T <= 0:\n print("Yes")\nelse:\n print("No")\n '] | ['Wrong Answer', 'Accepted'] | ['s804034304', 's843550163'] | [9148.0, 9140.0] | [30.0, 32.0] | [98, 103] |
p02570 | u955699148 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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(float,input().split())\nR=T*S\n\nif R<D:\n print('No')\nelse:\n print('yes')", "D,T,S = map(float,input().split())\nR=D/S\n\nif R>T:\n print('No')\nelse:\n print('yes')", "D,T,S = map(int,input().split())\nR=D/S\n\nif R>T:\n print('No')\nelse:\n print('yes')\n\n", "D,T,S = map(int,input().split())\nR=D/S\n\nif R>T:\n print('No')\nelse:\n print('yes')", "D,T,S = map(float,input().split())\nR = D/S\n\nif R>T:\n print('No')\nelse:\n print('Yes')"] | ['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted'] | ['s009134036', 's273999994', 's364664140', 's559025105', 's894155146'] | [9012.0, 9016.0, 9136.0, 9148.0, 8932.0] | [29.0, 28.0, 30.0, 28.0, 30.0] | [88, 88, 88, 86, 90] |
p02570 | u956318161 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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())\nif S*t >= d:\n print("Yes")\nelse:\n print("No")\n', 'S=input()\nT=input()\ntlen = len(T)\n\n\nfor i in range(tlen, 1):\n for k in range(0, tlen+1-i):\n Tinclude = T[k:i]\n print(tlen-i)\n break', 'd,t,s=map(int,input().split())\nif s*t >= d:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Runtime Error', 'Accepted'] | ['s002535727', 's144998748', 's182451995'] | [9028.0, 9004.0, 9052.0] | [26.0, 23.0, 29.0] | [67, 155, 78] |
p02570 | u956910277 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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 return "Yes"\nelse:\n return "No"', 'd,t,s = list( map( int , input().split() ))\nif d <= t*s:\n print("Yes")\nelse:\n print("No")'] | ['Runtime Error', 'Accepted'] | ['s122908031', 's319717792'] | [9092.0, 9008.0] | [28.0, 29.0] | [91, 91] |
p02570 | u963963908 | 2,000 | 1,048,576 | Takahashi is meeting up with Aoki. They have planned to meet at a place that is D meters away from Takahashi's house in T minutes from now. Takahashi 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'] | ['s236785935', 's155159212'] | [9072.0, 8996.0] | [29.0, 26.0] | [82, 82] |
Subsets and Splits