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
p02594
u668924588
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['a = int(input)\nif a >= 30:\n print("Yes")\nelse:\n print("No")', 'a = int(input())\nif a >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s986029172', 's038189795']
[9016.0, 9132.0]
[30.0, 26.0]
[61, 63]
p02594
u669770320
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n = int(input())\nif (n<=30):\n print("Yes")\nelse:\n print("No")', 'n = int(input())\nif (n>=30):\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s566501674', 's593206849']
[9004.0, 9100.0]
[27.0, 38.0]
[67, 67]
p02594
u674190122
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['print(["No","Yes"][int(input)>=30]) ', 'print(["No","Yes"][int(input())>=30]) ']
['Runtime Error', 'Accepted']
['s212420151', 's820119292']
[9076.0, 9148.0]
[23.0, 31.0]
[36, 38]
p02594
u674736819
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X = int(input())\nif X > 30:\n ans = 'No'\nelse:\n ans = 'Yes'\nprint(ans)", "X = int(input())\nif X < 30:\n ans = 'No'\nelse:\n ans = 'Yes'\nprint(ans)"]
['Wrong Answer', 'Accepted']
['s512856072', 's391785969']
[9060.0, 9096.0]
[30.0, 26.0]
[71, 71]
p02594
u677535300
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['a = int(intput())\nif a >= 30:\n print("Yes")\nelse:\n print("No")', 'a = int(input())\nif a >= 30:\n\tprint("Yes")\nelse:\n \tprint("No")']
['Runtime Error', 'Accepted']
['s978525288', 's403831234']
[9112.0, 8884.0]
[25.0, 25.0]
[64, 63]
p02594
u679817540
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['return int(input()) >= 30', 'print(int(input()) >= 30)', 'print("Yes" if int(input()) >= 30 else "No")']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s645184655', 's738112210', 's627331194']
[9000.0, 9080.0, 9140.0]
[23.0, 30.0, 29.0]
[25, 25, 44]
p02594
u682894596
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X = int(input())\n\nif X < 30:\n print(No)\nelse:\n print(Yes)', 'X = int(input())\n\nif X < 30:\n print("No")\nelse:\n print("Yes")']
['Runtime Error', 'Accepted']
['s471701328', 's431359182']
[9140.0, 9052.0]
[22.0, 30.0]
[59, 63]
p02594
u686174642
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n=int(input())\nif n>=30:\n print("YES")\nelse:\n print("NO")', 'n,d=[int(i) for i in input().strip().split(" ")]\nans=0\nfor _ in range(n):\n x,y=[int(i) for i in input().strip().split(" ")]\n if x*x+y*y==d*d:\n ans+=1\nprint(ans)', 'n=int(input())\nif n>=30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s037987898', 's487776477', 's189032134']
[9096.0, 9084.0, 9132.0]
[27.0, 20.0, 31.0]
[59, 165, 59]
p02594
u686184752
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['print("暑いのか…?")\nx=input()\nx=int(x)\nif -40<=x and x<=40:\n if x>=30:\n print(\'これは意外っ!猛暑っ!!\')\n elif x<30:\n print(\'やれやれだぜ\')\n else:\n print("さては究極生命体だな!!?") \n ', "x=input()\nx=int(x)\nif -40<=x and x<=40:\n if x>=30:\n print('Yes')\n else:\n print('No')"]
['Wrong Answer', 'Accepted']
['s542721821', 's534862101']
[9120.0, 9152.0]
[29.0, 28.0]
[262, 104]
p02594
u688281605
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["n = int(input())\nif n >= 25:\n print 'Yes'\nelse:\n print 'No'", "n = int(input())\nif n >= 25:\n print('Yes')\nelse:\n print('No')", "n = int(input())\nif n >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Wrong Answer', 'Accepted']
['s070102543', 's924899463', 's832676045']
[9004.0, 9148.0, 9084.0]
[27.0, 32.0, 32.0]
[61, 63, 63]
p02594
u689281702
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['def switch(temp):\n if temp>=30:\n print("Yes")\n else:\n print("No")', 'X = int(input())\nif X>=30:\n print("Yes")\nelse:\n print(\'No\')']
['Wrong Answer', 'Accepted']
['s666021567', 's145765568']
[9024.0, 9044.0]
[23.0, 29.0]
[73, 61]
p02594
u689710606
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = input()\n\nif x >= 30:\n print("Yes")\nelse:\n print("No")\n', 'x = int(input())\n\nif x >= 30:\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Accepted']
['s522477833', 's711049946']
[8980.0, 9064.0]
[25.0, 26.0]
[64, 69]
p02594
u689723321
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['s = input()\ntem=str(s)\nif tem>=30:\n print("Yes")\nelse:\n print("No")', 's=input("X")\ntem=int(s)\nif tem>=30:\n print("Yes")\nelse:\n print("No")', 'X = input()\ntem = int(X)\nif tem>=30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s315071212', 's950399569', 's542495238']
[9012.0, 9004.0, 9008.0]
[28.0, 29.0, 27.0]
[69, 70, 71]
p02594
u697690147
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X = int(input)\n\nprint("Yes" if X >= 30 else "No")', 'X = int(input())\n \nprint("Yes" if X >= 30 else "No")']
['Runtime Error', 'Accepted']
['s765018497', 's100431098']
[9008.0, 9144.0]
[21.0, 24.0]
[49, 52]
p02594
u698756732
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = int(input("x"))\n\nif x >= 30:\n print("Yes")\nElse:\n print("No")', 'x = int(input(""))\n\nif x >= 30:\n print("Yes")\nElse:\n print("No")', 'x = int(input(""))\n\nif x >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Runtime Error', 'Accepted']
['s345641259', 's492817298', 's206198397']
[9004.0, 9008.0, 9148.0]
[25.0, 24.0, 33.0]
[71, 70, 70]
p02594
u700326998
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = input()\nif x>= 30:\n print("Yes")\nelse:\n print("No")', 'x = int(input())\nif x>= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s046658040', 's556068624']
[8992.0, 9072.0]
[29.0, 29.0]
[57, 62]
p02594
u705418271
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n,d=map(int,input().split())\ncnt=0\nfor i in range(n):\n x,y=map(int,input().split())\n if x*x+y*y<=d*d:\n cnt+=1\n else:\n continue\nprint(cnt)\n', 'n,d=map(int,input().split())\ncnt=0\nfor i in range(n):\n x,y=map(int,input().split())\n if x*x+y+y<=d*d:\n cnt+=1\n else:\n continue\nprint(cnt)\n', 'n,d=map(int,input().split())\ncnt=0\nfor i in range(n):\n x,y=map(int,input().split())\n if x*x+y+y<=d*2:\n cnt+=1\n else:\n continue\nprint(cnt)\n', 'x=int(input())\nif x>=30:\n print("Yes")\nelse:\n print("No")\n ']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s248334727', 's723887693', 's934080573', 's862609297']
[9088.0, 9012.0, 9068.0, 8928.0]
[24.0, 26.0, 24.0, 26.0]
[147, 147, 147, 62]
p02594
u715213082
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['K=int(input())\ncnt=0\nans=0\nwhile cnt<1000001:\n cnt+=1\n ans=(ans*10+7)%K\n if ans==0:\n print(cnt)\n break\nelse:\n print(-1)', 'n = int(input())\ncnt = 0\nans = 0\nwhile(cnt<1000001):\n \tcnt += 1\n \tans = (ans*10 + 7)%n\n \tif ans == 0:\n \tprint(cnt)\n \n \t\tbreak\nelse:\n \n\tprint(-1)', 'n = int(input())\nif n >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s165514949', 's936898217', 's450023511']
[8948.0, 8992.0, 8928.0]
[236.0, 21.0, 30.0]
[129, 156, 63]
p02594
u716314620
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = int(input())\nif x >= 30:\n print("yes")\nelse:\n print("no")', 'x = int(input())\nif x >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s873844099', 's852538795']
[9088.0, 9080.0]
[29.0, 25.0]
[67, 67]
p02594
u718765445
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['from math import sqrt\nN, D = map(int, input().split())\ncount = 0\nfor i in range(N):\n P, Q = map(int, input().split())\n dis = ((P**2)+(Q**2))**0.5\n if dis >= D:\n count+=1\nprint(count)', 'X = int(input())\nif X>=30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s284864520', 's603231144']
[9168.0, 9140.0]
[22.0, 28.0]
[198, 65]
p02594
u721130361
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X=input()\n\nif int(X)>=30:\n print('Yes')\n else :\n print('No')", "X=input()\n \nif int(X)>=30:\n print('Yes')\nelse :\n print('No')"]
['Runtime Error', 'Accepted']
['s405794609', 's840374241']
[8960.0, 9104.0]
[23.0, 25.0]
[65, 62]
p02594
u723395157
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['a = int(input())\nif (a >= 30): \n print("Yes")\nelse\n\tprint("No")', 'a = int(input("Enter number: "))\nif a>=30:\n print("Yes")\nelse:\n print("No")', 'a = int(input())\nif a>=30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s160640960', 's831216468', 's872698152']
[8892.0, 9088.0, 9156.0]
[21.0, 30.0, 25.0]
[67, 81, 65]
p02594
u724394250
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X = int(input())\nif X >= 30:\n print(Yes)\nelse:\n print(No)', 'X = int(input())\nif X >= 30 :\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s660860294', 's342075955']
[8952.0, 9120.0]
[24.0, 25.0]
[59, 64]
p02594
u727072969
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X = int(input())\nif X => 30:\n print("YES")\nelse:\n print("No")', 'X = int(input())\nif X => 30:\n print("Yes")\nelse:\n print("No")\n', 'X = int(input())\nif X >= 30:\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Runtime Error', 'Accepted']
['s308416653', 's843573654', 's847998916']
[8932.0, 9000.0, 9164.0]
[24.0, 24.0, 31.0]
[67, 68, 68]
p02594
u727865521
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['temp = int(input())\nif temp >= 30:\n print("YES")\nelse:\n print("NO")', 'temp = int(input())\nif temp >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s132778434', 's713082779']
[9156.0, 8912.0]
[28.0, 31.0]
[69, 69]
p02594
u729133443
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['import numpy as np', "print('YNeos'[int(input())<30::2])"]
['Wrong Answer', 'Accepted']
['s513399201', 's032745962']
[26992.0, 9076.0]
[115.0, 31.0]
[18, 34]
p02594
u737724343
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X = int(input())\nif X >= 30:\n print('Yes'):\nelse:\n print('No'):\n\n", "X = int(input())\nif X >= 30:\n print('Yes')\nelse:\n print('No')\n\n"]
['Runtime Error', 'Accepted']
['s112210751', 's030704494']
[8884.0, 9044.0]
[23.0, 32.0]
[71, 69]
p02594
u737901815
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["int(raw_input())\nif x >30 :\n print('Yes')\nelse:\n print('No')", "x = int(input())\n\nif x >=30 :\n print('Yes')\nelse:\n print('No')\n"]
['Runtime Error', 'Accepted']
['s228341326', 's589630519']
[8984.0, 9056.0]
[29.0, 28.0]
[66, 69]
p02594
u743670555
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = input()\n\nif x >= 30:\n print("Yes")\n \nelse:\n print("No")', 'x = input()\n\nif x >= 30:\n print("Yes")\n \nelse:\n print("No")', "x = input()\n\ndef temp(num):\n if num >= 30:\n print('Yes')\n else:\n print('No')\n \ntemp(x)", "x = int(input())\n\nif x >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s048211317', 's227144735', 's455958172', 's944873587']
[9080.0, 9104.0, 8948.0, 9152.0]
[26.0, 30.0, 27.0, 30.0]
[61, 62, 97, 64]
p02594
u744054041
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['def main(N):\n print("YES" if N >= 30 else "NO")\n\n\nN = int(input())\nmain(N)\n', 'def main(N):\n print("Yes" if N >= 30 else "No")\n\n\nN = int(input())\nmain(N)\n']
['Wrong Answer', 'Accepted']
['s262966283', 's850895906']
[9080.0, 9140.0]
[28.0, 31.0]
[78, 78]
p02594
u745271615
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['temp = int(input())\nif temp >= 30:\n print("yes")\nelse:\n print("no")', 'temp = int(input())\nif temp >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s120391082', 's906829014']
[9116.0, 9144.0]
[24.0, 33.0]
[69, 69]
p02594
u745812846
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["print('Yes' if int(input()) <= 30 else 'No')", "print('Yes' if int(input()) >= 30 else 'No')"]
['Wrong Answer', 'Accepted']
['s257898169', 's481031707']
[9148.0, 9152.0]
[29.0, 30.0]
[44, 44]
p02594
u746428948
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["if(int(input()) >= 30:\n print('Yes')\nelse:\n print('No')", "if(int(input())) >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Accepted']
['s845646044', 's844917222']
[9000.0, 9148.0]
[27.0, 30.0]
[59, 60]
p02594
u749122544
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['int(input())\n\nif X >= 30:\n print("Yes")\nelse:\n print("No")\n', 'int(input(X))\n\nif X >= 30:\n print("Yes")\nelse:\n print("No")', 'int(input())\n-40 <= X <= 40\nif X >= 30:\n print("Yes")\nelse:\n print("No")\n', 'X = int(input())\n\nif X >= 30:\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s265479637', 's542521284', 's902971911', 's945281725']
[9064.0, 8992.0, 8980.0, 8904.0]
[24.0, 22.0, 26.0, 31.0]
[61, 61, 75, 65]
p02594
u749491107
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['import math\n\nn, d = map(int, input().split())\nxy = [list(map(int, input().split())) for a in range(n)]\ncount = 0\nfor i in range(n):\n number = (xy[i][0]**2)+(xy[i][1]**2)\n result = math.sqrt(number)\n if result <= d:\n count += 1\n else:\n count += 0\nprint(count)', 'x = int(input())\nif x >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s076113692', 's622036770']
[9168.0, 9144.0]
[24.0, 24.0]
[284, 67]
p02594
u749947386
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['xin = int(input())\n\t\nif ( xin >= 30 ):\n\tprint("yes")\nelse:\n\tprint("no")\n', 'xin = int(input())\n\t\nif ( X >= 30 ):\n\tprint("yes")\nelse:\n\tprint("no")\n', 'xin = int(input())\n\t\nif ( xin >= 30 ):\n\tprint("Yes")\nelse:\n\tprint("No")\n']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s264909155', 's917280326', 's793298258']
[8908.0, 9136.0, 9008.0]
[28.0, 22.0, 30.0]
[72, 70, 72]
p02594
u751717561
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["n = int(input())\n\nif x >= 30:\n print('Yes')\nelse:\n print('No')", "x = int(input())\n \nif x >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Accepted']
['s484134008', 's740068204']
[9148.0, 9140.0]
[27.0, 30.0]
[64, 65]
p02594
u752200367
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["i = int(input())\nif i >= 30:\n print('yes')\nelse: print('no')", "i = int(input())\nif i >= 30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s323759374', 's094259779']
[9100.0, 9124.0]
[33.0, 28.0]
[63, 67]
p02594
u753854665
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X = int(input())\n\nif (N >= 30):\n print("Yes")\nelse:\n print("No")', 'X = int(input())\n\nif (X >= 30):\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s062803306', 's391075783']
[9144.0, 9144.0]
[31.0, 34.0]
[70, 70]
p02594
u755524167
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["def aux(x):\n if -40<=x<=40:\n return 'Yes'\n else:\n return 'No'", "while -40<=int(input())<=40:\n print('yes')\nprint('no')\n", "def AirConditioner(x):\n while -40<=x<=40:\n return aux(x)\n \ndef aux(x):\n if x >= 30 or x <= -30:\n return 'Yes'\n else:\n return 'No'", "while -40<=int(input())<=40: print('yes')\nprint('no')", "if -40<=int(input())<=40:\n print('Yes')\nelse:\n print('No')", "def aux(x):\n while -40<=x<=40:\n return 'Yes'\n return 'No'\n", "x=int(input())\nif -40<=x<=40:\n print('Yes')\nelse:\n print('No')", "def aux(x):\n if x>=30:return 'Yes'\n return 'No'", "def aux(x):\n while 29<x>=30:\n return('Yes')\n print('No')", "while -40<=int(input())<=40: print('yes')\nprint('no')", "def aux(x):\n while 29<x>=30:\n return'Yes'\n return 'No", "def aux(x):\n while x>=30:\n return'Yes'\n return 'No'", "if 30<=int(input()):\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted']
['s056689115', 's062238525', 's176745420', 's182529910', 's493077117', 's520368607', 's724120477', 's839857063', 's860162840', 's890160560', 's945549162', 's969534800', 's120763787']
[9072.0, 9080.0, 9028.0, 9084.0, 9148.0, 8880.0, 9088.0, 9072.0, 9080.0, 9156.0, 9000.0, 9008.0, 9144.0]
[32.0, 23.0, 31.0, 25.0, 29.0, 23.0, 31.0, 29.0, 23.0, 27.0, 25.0, 26.0, 37.0]
[81, 58, 162, 53, 64, 71, 68, 53, 69, 53, 66, 64, 59]
p02594
u756317228
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n = input()\nif n >= 30:\n print("Yes")\nelse:\n print("No")', 'n = int(input())\nif n >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s937151322', 's760786362']
[8872.0, 8936.0]
[27.0, 29.0]
[58, 67]
p02594
u757030836
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["n = int(input())\n\nif n >=30;\nprint('Yes')\nelse\nprint('No')", "n = int(input())\n\nif n >=30:\n\tprint('Yes')\nelse:\n\tprint('No')"]
['Runtime Error', 'Accepted']
['s321624417', 's733554234']
[9004.0, 9168.0]
[18.0, 30.0]
[58, 61]
p02594
u761168538
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n=int(input())\nif(n>=30):\n\tprint("YES")\nelse:\n\tprint("NO")', 'n=int(input())\nif(n>=30):\n\tprint("Yes")\nelse:\n\tprint("No")']
['Wrong Answer', 'Accepted']
['s924035444', 's282093639']
[9144.0, 9144.0]
[29.0, 24.0]
[58, 58]
p02594
u763467803
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\nimport sys\nimport glob\n\nclass InputGenerator(object):\n def __init__(self, input_path=None):\n if input_path != None:\n self.g = self.input_generator(input_path)\n else:\n self.g = None\n\n def input_generator(self, input_path):\n with open(input_path) as f:\n for line in f:\n yield line\n\n def get_input(self):\n if self.g == None:\n return input()\n else:\n return next(self.g)\n\ndef show_trace(s, trace):\n offset = 0\n arrow = ''\n for i in trace:\n if i != 0:\n print('{}{}'.format(arrow, s[offset:offset+i]), end='')\n arrow = ' -> '\n offset += i\n print('')\n\ndef solve(s):\n valid_term_list = ['dream', 'dreamer', 'erase', 'eraser']\n offset_candidate_list = [[0]]\n\n while offset_candidate_list != []:\n trace = offset_candidate_list.pop()\n offset = sum(trace)\n\n for c in valid_term_list:\n c_len = len(c)\n if c == s[offset:offset + c_len]:\n offset_candidate_list.append(trace + [c_len])\n if offset + c_len == len(s):\n # show_trace(s, trace + [c_len])\n return True\n\n return False\n\nif __name__ == '__main__':\n TEST_FLAG = True\n\n if TEST_FLAG == True:\n file_path_list = sorted(glob.glob('test/*'))\n else:\n file_path_list = [None]\n\n for file_path in file_path_list:\n gen = InputGenerator(file_path)\n l = gen.get_input().rstrip()\n x = int(l)\n if x >= 30:\n print('Yes')\n else:\n print('No')\n", "#!/usr/bin/env python\n# -*- coding: utf-8 -*-\n\nimport sys\nimport glob\n\nclass InputGenerator(object):\n def __init__(self, input_path=None):\n if input_path != None:\n self.g = self.input_generator(input_path)\n else:\n self.g = None\n\n def input_generator(self, input_path):\n with open(input_path) as f:\n for line in f:\n yield line\n\n def get_input(self):\n if self.g == None:\n return input()\n else:\n return next(self.g)\n\ndef solve(gen):\n l = gen.get_input().rstrip()\n x = int(l)\n if x >= 30:\n print('Yes')\n else:\n print('No')\n\nif __name__ == '__main__':\n test_flag = len(sys.argv) > 1\n\n if test_flag == True:\n file_path_list = sorted(glob.glob('test/*'))\n else:\n file_path_list = [None]\n\n for file_path in file_path_list:\n gen = InputGenerator(file_path)\n solve(gen)\n"]
['Wrong Answer', 'Accepted']
['s158320418', 's674857849']
[9968.0, 9956.0]
[34.0, 40.0]
[1681, 940]
p02594
u763628696
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['tem = input()\nif tem >= 30:\n print("Yes")\nelse:\n print("No")', 'tem = int.input()\nif tem >= 30:\n print("Yes")\nelse:\n print("No")', '\ntem = input()\nif tem >= 30:\n print("Yes")\nelse:\n Print("No")', 'tem = int(input())\nif tem >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s144961310', 's807432027', 's985394030', 's112331230']
[9024.0, 8980.0, 9028.0, 9152.0]
[25.0, 26.0, 28.0, 28.0]
[62, 66, 63, 67]
p02594
u765463047
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["x = input()\nprint(x)\n\nif x >=30:\n print('Yes')\nelse:\n print('No')", "x = int(input())\n# print(x)\n\nif x >=30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Accepted']
['s419211312', 's814479706']
[9084.0, 9144.0]
[24.0, 30.0]
[67, 74]
p02594
u768199898
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['a = int(input())\nif a >= 30:\n return "Yes"\nelse:\n return "No"', 'X = int(input())\nif X >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s318536213', 's648819448']
[8844.0, 9024.0]
[22.0, 24.0]
[63, 63]
p02594
u770308589
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["x = input()\n\nif x >= 30:\n print('Yes')\nelif x < 30:\n print('No')", "x = input()\n\nif x >= 30:\n print('Yes')\nelif x < 30:\n print('No')\nelse:\n print('No')", "x = int(input())\n\nif x >= 30:\n print('Yes')\nelif x < 30:\n print('No')\n"]
['Runtime Error', 'Runtime Error', 'Accepted']
['s543094851', 's689164224', 's658681483']
[8984.0, 9048.0, 9024.0]
[22.0, 23.0, 27.0]
[66, 86, 72]
p02594
u779327980
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['N, D = map(int, input().split())\n\ncount = 0\n\nfor i in range(N):\n x, y = map(int, input().split())\n if D > pow(x**2+y**2, 0.5):\n count += 1\n else:\n continue\n \nprint(count)', 'x = input()\nif int(x) >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s484001541', 's151004190']
[9160.0, 9140.0]
[25.0, 29.0]
[182, 63]
p02594
u780236381
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["x = int(input())\nif x >= 30:\n print('YES')\nelse:\n print('NO')", "x = int(input())\nif x >= 30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s343061300', 's567291066']
[9156.0, 9120.0]
[30.0, 28.0]
[67, 67]
p02594
u784084008
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["int t = 30\nif (t >= 30):\n print('Yes')\nelse:\n print('No')", "t = int(input())\nif (t >= 30):\n print('Yes')\nelse:\n print('No')\n"]
['Runtime Error', 'Accepted']
['s453458806', 's483159739']
[9000.0, 9132.0]
[27.0, 34.0]
[59, 66]
p02594
u784982404
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['import os\nimport sys\n\nimport numpy as np\n\n\ndef solve(inp):\n def bit_add(arr, n, i, x):\n while i <= n:\n arr[i] += x\n i += i & -i\n\n def bit_sum(arr, i):\n result = 0\n while i > 0:\n result += arr[i]\n i ^= i & -i\n return result\n\n if inp[0] >= 30:\n return "Yes"\n else:\n return "No"\n\n\nif sys.argv[-1] == \'ONLINE_JUDGE\':\n from numba.pycc import CC\n\n cc = CC(\'my_module\')\n cc.export(\'solve\', \'(i8[:],)\')(solve)\n cc.compile()\n exit()\n\nif os.name == \'posix\':\n \n from my_module import solve\nelse:\n from numba import njit\n\n solve = njit(\'(i8[:],)\', cache=True)(solve)\n print(\'compiled\', file=sys.stderr)\n\ninp = np.fromstring(sys.stdin.read(), dtype=np.int64, sep=\' \')\nans = solve(inp)\nprint(\'\\n\'.join(map(str, ans)))', 'n = input()\n\nif n >= 30:\n print("Yes")\nelse:\n print("No")', 'n = int(input())\n\nif n >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s025669608', 's288901310', 's579280817']
[27288.0, 9028.0, 8940.0]
[119.0, 30.0, 26.0]
[868, 63, 68]
p02594
u785475109
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['K = int(input())\nx = 7 % K\n\nfor count in range(1, K + 1):\n if x == 0:\n print(count)\n break\n x = (x * 10 + 7) % K\n\nelse: print(-1)\n', 'K = int(input())\nx = 7 % K\n\nfor i in range(1, K + 1):\n if x == 0:\n print(i)\n break\n x = (x * 10 + 7) % K\n\nelse: print(-1)\n', 'K = int(input())\nx = 7 % K\n\nfor i in range(1, K + 1):\n if x == 0:\n print(i)\n break\n x = (x * 10 + 7) % K\n\nelse: print(-1)\n', 'X = int(input())\nif X >= 30: print("Yes")\nelse: print("No")\n']
['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted']
['s027790568', 's341342766', 's519646107', 's109796168']
[9164.0, 9032.0, 9152.0, 9136.0]
[30.0, 29.0, 24.0, 34.0]
[138, 130, 130, 60]
p02594
u787334729
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['t=int(input())\nif t>=30:\n print("Yes")\nelse:\n print("NO")\n ', 't=int(input())\nif t>=30:\n print("Yes")\nelse:\n print("No")\n \n']
['Wrong Answer', 'Accepted']
['s864771688', 's554761437']
[9140.0, 9144.0]
[30.0, 30.0]
[68, 69]
p02594
u787466693
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['import math\n\n\nN,D = map(int, input().split())\n\nnum_list = []\nfor i in range(N):\n num_list.append(list(map(int,input().split())))\n\ncount = 0\nfor p,q in num_list:\n d = math.sqrt(p**2 + q**2)\n if(d<=D):\n count += 1\n \nprint(count)', 'N = int(input().strip())\nif(N >= 30):\n print("Yes")\nelif(N<30):\n print("No")']
['Runtime Error', 'Accepted']
['s552794623', 's966171810']
[9188.0, 9152.0]
[23.0, 24.0]
[250, 78]
p02594
u788061153
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["n = int(input())\nif n>=30:\n print('YES')\nelse:\n print('NO')", "n = int(input())\nif n>=30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s978028082', 's292601984']
[9148.0, 9044.0]
[30.0, 28.0]
[61, 61]
p02594
u798886512
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n,d=map(int,input().split())\nctr=0\nfor i in range(n):\n x,y=map(int,input().split())\n if float((x**2+y**2)**(1/2))>=float(d):\n ctr+=1\nprint(ctr)\n', 'n,d=map(int,input().split())\nctr=0\nfor i in range(n):\n x,y=map(int,input().split())\n t=(x**2+y**2)**(1/2)\n if t<=d:\n ctr+=1\nprint(ctr)\n', 'n,d=map(int,input().split())\nctr=0\nfor i in range(n):\n x,y=map(int,input().split())\n if (x**2+y**2)**(1/2)>=d:\n ctr+=1\nprint(ctr)\n', 'n,d=map(int,input().split())\nctr=0\nfor i in range(n):\n x,y=map(int,input().split())\n if (x**2+y**2)**(1/2)==d:\n ctr+=1\nprint(ctr)', 'x=int(input())\nif x>=30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s277441440', 's405746881', 's437641820', 's941342601', 's475482494']
[9036.0, 9092.0, 9180.0, 9128.0, 8988.0]
[28.0, 28.0, 27.0, 21.0, 27.0]
[149, 141, 135, 134, 59]
p02594
u805066078
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = int(input())\nif x < 30:\n print("No")\nprint("Yes")', 'x = int(input())\nif x < 30:\n print("No")\nelse:\n print("Yes")']
['Wrong Answer', 'Accepted']
['s322239819', 's985599115']
[9144.0, 9084.0]
[30.0, 31.0]
[54, 62]
p02594
u807437619
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['input = int(input())\n\nif 30<input:\n print("yes")\nelse:\n print("no")', 'input = int(input())\n\nif 30<=input:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s145417996', 's463943061']
[8956.0, 8996.0]
[30.0, 28.0]
[73, 74]
p02594
u809416266
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
[' X = int(input())\n if X > 30:\n print("Yes")\n else:\n print("No")', 'X = input()\nX = range(-40,40)\nif X > 30:\n print("Yes")\nelse:\n print("No")', 'X = int(input())\nif X > 30:\n print("Yes")\n else:\n print("No")', 'X = int(35)\n-40 <= X <=40\nif X >= 30:\n print("Yes")\nelse:\n print("No")', 'X = int(input())\nfor X in range(40):\n if X > 30:\n print("Yes")\n else:\n print("No")', 'X = input()\nif X > 30:\n print("Yes")\nelse:\n print("No")', 'X = int(input())\nX = range(-40 < 40)\nif X > 30:\n print("Yes")\nelse:\n print("No")', 'X = int(input())\nif X >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Runtime Error', 'Accepted']
['s028999233', 's137482972', 's351362229', 's616591183', 's888229639', 's917248835', 's984331294', 's169635685']
[8948.0, 9016.0, 9000.0, 9012.0, 9036.0, 8968.0, 9040.0, 9072.0]
[24.0, 27.0, 23.0, 29.0, 26.0, 29.0, 28.0, 31.0]
[82, 75, 64, 72, 86, 57, 82, 67]
p02594
u813042907
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X=input()\n\nif X >= 30:\n return Yes\nelse:\n return No', 'X = int(input())\n\nif X>=30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s829389469', 's475891245']
[8980.0, 9108.0]
[30.0, 25.0]
[53, 62]
p02594
u815468655
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X = int(input())\nif X >=30:\n print("Yes")\nelse:\n print("N0")', 'X = int(input())\nif X >=30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s110731614', 's371466289']
[9148.0, 9148.0]
[29.0, 27.0]
[66, 66]
p02594
u817247382
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['temperature = int(input())\n\nif temperature >= 30:\n print("yes")\nelse:\n print("no")\n', 'temperature = int(input())\n\nif temperature >= 30:\n print("Yes")\nelse:\n print("No")\n']
['Wrong Answer', 'Accepted']
['s717048277', 's589347856']
[9136.0, 9140.0]
[37.0, 33.0]
[89, 89]
p02594
u818213347
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['int x = int(input())\nif x >= 30:\n print("Yes")\nelse:\n print("No")', 'int x = int(input())\nif x >= 30:\n print("yes")\nelse:\n print("no")', 'x = int(input())\nif x >= 30:\n print("yes")\nelse:\n print("no")', 'x = int(input())\nif x >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Runtime Error', 'Wrong Answer', 'Accepted']
['s396603337', 's729432812', 's781091664', 's873772696']
[9008.0, 8972.0, 9152.0, 9084.0]
[26.0, 24.0, 25.0, 27.0]
[67, 67, 63, 63]
p02594
u820031813
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["K = int(input())\n\nif K % 2 == 0:\n print(-1) \n\nelse:\n i = 0\n tmp_n = 0\n while i >= 0:\n tmp_n = tmp_n + 10**i * 7\n\n # print('tmp_n: ', tmp_n)\n if K <= tmp_n:\n if tmp_n != 0 and tmp_n % K == 0:\n break\n i += 1\n \n print(i+1)", "temp = int(input())\nif temp >= 30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s058082377', 's085862416']
[9160.0, 9148.0]
[2205.0, 28.0]
[251, 69]
p02594
u820087133
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['if int(input()) >=30:\n print("YES")\nelse:\n print("NO")', 'if int(input()) >=30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s967843820', 's583210820']
[9156.0, 9144.0]
[29.0, 27.0]
[56, 56]
p02594
u825161822
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["n=int(input())\n#a,b=map(int,input().split())\n#a=list(map(int,input().split()))\nif n>=30:\n print('YES')\nelse:\n print('NO')\n", "n=int(input())\n#a,b=map(int,input().split())\n#a=list(map(int,input().split()))\nif n>=30:\n print('Yes')\nelse:\n print('No')\n"]
['Wrong Answer', 'Accepted']
['s404449407', 's541813222']
[9152.0, 9128.0]
[28.0, 27.0]
[128, 128]
p02594
u826637752
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["if X => 30:\n print('Yes')\nelse:\n print('No')", 'if X <30:\n print("No")\nelse:\n print("Yes")', "X = input()\nX = int(X)\n\nif X >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Runtime Error', 'Accepted']
['s227979398', 's425165557', 's805995864']
[8920.0, 9064.0, 9092.0]
[21.0, 26.0, 24.0]
[46, 44, 70]
p02594
u827261928
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X=int(input())\nif(X>=30):\n print('YES')\nelse:\n print('NO')", "X=int(input())\nif(X>=30):\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s247012339', 's948015850']
[9008.0, 9092.0]
[29.0, 31.0]
[64, 64]
p02594
u829573578
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x=int(input())\nif(x>=30):\n print("Yes")\nelse:\n prinit("No")', 'x=int(input())\nif(x>=30):\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s881335040', 's467416571']
[8928.0, 8984.0]
[29.0, 26.0]
[61, 60]
p02594
u839335379
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['#!/usr/bin/env python3\n\nval1 = input()\n\nif int(val1) >= 30:\n print("YES")\nelse:\n print("NO")', '#!/usr/bin/env python3\n\nval1 = input()\n\nif int(val1) >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Accepted']
['s388805328', 's405160498']
[9152.0, 9064.0]
[30.0, 28.0]
[98, 98]
p02594
u843060713
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = input()\n\nif x >= 30:\n print("yes")\nelse:\n print("no")', 'x = input()\n\nif int(x) >= 30:\n print("yes")\nelse:\n print("no")', 'x = input()\n\nif int(x) >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s020551505', 's180233901', 's621080024']
[8960.0, 9092.0, 9068.0]
[24.0, 28.0, 26.0]
[59, 64, 64]
p02594
u854294899
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["n = int(input())\nif n >= 30:\n s = 'YES'\nelse:\n s = 'NO'\nprint(s)", " n = int(input())\n if n >= 30:\n s = 'Yes'\n else:\n s = 'No'\n print(s)", 'import sys\nimport math\n\ninput = sys.stdin.readline\n\ndef can(arr, m, K):\n need = 0\n for x in arr:\n need += int(x // m)\n return need <= K\n\nN, K = map(int, input().split())\narr = list(map(int, input().split()))\narr = sorted(arr)\n\nlo = 0.0\nhi = 1e9\n\nwhile (abs(lo - hi) > 1e-5):\n m = (lo + hi) / 2.0\n if (can(arr, m, K)):\n hi = m\n else:\n lo = m\nans = lo\n\nprint(int(math.ceil(lo)))\n \n \n\n', "n = int(input())\ns = ''\nif n >= 30:\n s = 'Yes'\nelse:\n s = 'No'\nprint(s)"]
['Wrong Answer', 'Runtime Error', 'Runtime Error', 'Accepted']
['s163881654', 's490087893', 's774782888', 's802421591']
[9040.0, 8600.0, 9068.0, 9092.0]
[29.0, 23.0, 23.0, 25.0]
[66, 90, 399, 73]
p02594
u854931881
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x=int(input())\nif 30<=x:\n print("yes")\nelse:\n print("no")', 'x=int(input())\nif 30<=x:\n print("Yes")\nelse:\n print("No")\n ']
['Wrong Answer', 'Accepted']
['s982076176', 's160034122']
[9084.0, 9132.0]
[34.0, 28.0]
[58, 59]
p02594
u855057563
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X=int(input())\nif 30<=X<=40:\n print("Yes")\nelif:-40<=X<30\n print("No")\n', 'X=int(input("X="))\nif 30<=X<=40:\n print("Yes")\nelif:-40<=X<30\n print("No")\n', 'X=int(input("X="))\nif 30<=X<=40:\n print("Yes")\nelif:-40<=X<30\n print("No")', 'X=int(input("X:"))\nif 30<=X<=40:\n\tprint("Yes")\nelif:-40<=X<30\n\tprint("No")\n', 'X=int(input(""))\nif 30<=X:\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s226312674', 's239581544', 's343030031', 's681048916', 's022524379']
[8944.0, 9008.0, 8880.0, 8940.0, 9160.0]
[25.0, 26.0, 29.0, 22.0, 28.0]
[75, 81, 78, 75, 64]
p02594
u855219015
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X = int(input())\nif X >= 30:\n print('yes')\nelse:\n print('no')", "X = int(input())\nif 40 >= X >= -40:\n print('yes')\nelse:\n print('no')", 'K = int(input())\nif (K % 5 == 0) | (K % 2 == 0):\n print(-1)\n\nelse:\n a = 7\n for i in range(K):\n if a % K == 0:\n print(i + 1)\n exit()\n a = (10 * a + 7) % K\n print(-1)', "X = int(input())\nif X >= 30:\n print('yes')\nelse:\n print('no')", "X = int(input())\nif 30 <= X:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted']
['s025867389', 's152598009', 's224514541', 's240045273', 's216492589']
[9072.0, 9076.0, 9164.0, 9164.0, 9088.0]
[31.0, 26.0, 27.0, 25.0, 28.0]
[68, 75, 184, 68, 68]
p02594
u856726960
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['X=map(int,input().split())\n\nif(X>=30):\n print("Yes")\nelse:\n print("No")', 'a=int(input())\n\nif(a>=30):\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s910934796', 's751289518']
[8788.0, 9148.0]
[25.0, 27.0]
[77, 61]
p02594
u858670323
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = int(input())\nif x>=30:\n print("Yes")\nelse:\n praint("No")', 'x = int(input())\nif x>=30:\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Accepted']
['s084104053', 's301693272']
[9120.0, 9112.0]
[26.0, 29.0]
[62, 62]
p02594
u862417957
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['# !/usr/bin/python3\n\n\ndef solve(n):\n if n >= 30: return "YES"\n return "NO"\n\n\nif __name__ == "__main__":\n n = int(input())\n\n print(solve(n))\n', '# !/usr/bin/python3\n\n\ndef solve(n):\n if n >= 30: return "Yes"\n return "No"\n\n\nif __name__ == "__main__":\n n = int(input())\n\n print(solve(n))\n']
['Wrong Answer', 'Accepted']
['s951889955', 's803754176']
[9148.0, 9148.0]
[33.0, 28.0]
[152, 152]
p02594
u862959195
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X = input()\n\nif X >= 30:\n print('Yes')\nelse:\n print('No')\n ", "X = int(input())\n\nif X >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Accepted']
['s566911038', 's512397354']
[9028.0, 9144.0]
[25.0, 25.0]
[68, 68]
p02594
u863093690
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['K=int(input())\nN=1\nc=0\nif K%2==0:\n print("-1")\nelse:\n while N % K != 0:\n c += 1\n N = int(7 * (10 ** c - 1) / (10 - 1))\nprint(c)\n\n\n\n\n', 'X=int(input())\nif X<30:\n print("No")\nelse:\n print("Yes")']
['Wrong Answer', 'Accepted']
['s668020230', 's752947233']
[9072.0, 9144.0]
[33.0, 32.0]
[152, 62]
p02594
u863150907
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['a = int(input())\nif a >= 30:\n print("YES")\nelse:\n print("NO")', 'a = int(input())\nif a >= 30:\n print("YES")\nelse:\n print("NO")', 'a = int(input())\nif a >= 30:\n print("Yes")\nelse:\n print("No")']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s976300305', 's986558339', 's349821214']
[9148.0, 9144.0, 9140.0]
[33.0, 31.0, 28.0]
[63, 63, 63]
p02594
u866850376
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['t = int(input())\nprint "Yes" if t >= 30 else "No"\n ', 't = int(input)\nprint("Yes" if t >= 30 else "No")', 't = int(input())\nprint("Yes" if t >= 30 else "No")']
['Runtime Error', 'Runtime Error', 'Accepted']
['s453006496', 's968509008', 's988099001']
[8872.0, 9024.0, 9092.0]
[21.0, 25.0, 26.0]
[52, 48, 50]
p02594
u867616076
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = int(inpt())\nif(x >= 30):\n print("Yes")\nelse:\n print("No")\n', 'x = int(input())\nif(x >= 30):\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Accepted']
['s154150555', 's833614088']
[8932.0, 9128.0]
[25.0, 27.0]
[68, 69]
p02594
u867981789
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["X = 30\n\nif X >= 30:\n print('Yes')\nelse:\n print('No')", "X = int(input())\n\nif X >= 30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s262377500', 's030570101']
[9024.0, 9088.0]
[24.0, 27.0]
[58, 68]
p02594
u871841829
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['N = int(input())\n\nif X >= 30:\n print("Yes")\nelse:\n print("No")', 'N = int(input())\n\nif N >= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s840838370', 's665789637']
[9148.0, 9148.0]
[25.0, 29.0]
[68, 68]
p02594
u878114269
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = input()\nif x >= 30:\n print("Yes")\nelse : print("No") ', 'x = float(input())\nif x>=30.0:\n print("Yes")\nelse: print("No")']
['Runtime Error', 'Accepted']
['s151015882', 's606920182']
[8964.0, 9000.0]
[24.0, 29.0]
[59, 65]
p02594
u879309973
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['print("Yes" if int(input())>="30" else "No")', 'print("Yes" if int(input())>=30 else "No")']
['Runtime Error', 'Accepted']
['s666450039', 's026713669']
[9136.0, 9112.0]
[25.0, 26.0]
[44, 42]
p02594
u879866069
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['x = input()\nif x >= 30:\n print("Yes")\nelse:\n print("No)', 'x = int(input())\nif x>= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s351776895', 's007246226']
[9016.0, 9084.0]
[28.0, 31.0]
[57, 62]
p02594
u883237011
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["temperature = int(input())\n\nif 30 <= temperature:\n print('Yes')\nels:\n print('No')\n", 'temperature = int(input())\n\nif 30 <= temperature:\n print("Yes")\nelse:\n print("No")\n']
['Runtime Error', 'Accepted']
['s217396340', 's206319203']
[8952.0, 9080.0]
[27.0, 24.0]
[88, 89]
p02594
u887833602
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["deg = int(input())\nif deg >= 20:\n print('Yes')\nelse:\n print('No')", "deg = int(input())\nif deg >= 30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s228729757', 's752859728']
[8988.0, 9076.0]
[28.0, 25.0]
[67, 67]
p02594
u896791216
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["x = int(input())\nif x >= 30:\n print('YES')\nelse:\n print('NO')", "x = int(input())\nif x >= 30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s675076142', 's212607807']
[9148.0, 8980.0]
[29.0, 31.0]
[67, 67]
p02594
u897165915
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n = input()\nif n >= 30:\n print(Yes)\nelse:\n print(No)', "n = int(input())\nif n >= 30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Accepted']
['s960480872', 's077481222']
[8908.0, 8956.0]
[28.0, 27.0]
[54, 63]
p02594
u897617509
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["temp = int(input())\n\nif temp <= 30:\n ans = 'Yes'\nelse:\n ans = 'No'\n\nprint(ans)\n", "temp = int(input())\n\nif 30 <= temp:\n ans = 'Yes'\nelse:\n ans = 'No'\n\nprint(ans)\n"]
['Wrong Answer', 'Accepted']
['s901964208', 's080412368']
[9136.0, 9136.0]
[27.0, 26.0]
[85, 85]
p02594
u900968659
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['# -*- coding: utf-8 -*-\nimport sys\nk=int(input())\nif k%2==0 or k%5==0:\n print(-1)\n sys.exit()\ns=7\nfor i in range(k):\n m=s%k\n if m==0:\n print(i+1)\n break\n s=m*10+7', "# -*- coding: utf-8 -*-\nx=int(input())\nif x>=30:\n print('Yes')\nelse:\n print('No')"]
['Wrong Answer', 'Accepted']
['s827820436', 's859725532']
[9164.0, 9140.0]
[26.0, 29.0]
[173, 83]
p02594
u903387010
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['int(x)=input()\n\nif x>=30:\n print(\'Yes\')\nelse:\n print("No")', 'x=input()\nx=int(x)\nif x>=30:\n print(\'Yes\')\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s226164597', 's296389806']
[9020.0, 9004.0]
[25.0, 31.0]
[64, 67]
p02594
u904331908
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['n,d = map(int,input().split())\n\np = [list(map(int,input().split())) for i in range(n)]\n\nkyori = d * d\ncount = 0\n\nfor s in range(n):\n nagasa = p[s][0] * p[s][0] + p[s][1] * p[s][1]\n if nagasa <= kyori:\n count += 1\n \nprint(count)\n', 'x = int(input())\n\nif x >= 30 :\n print("Yes")\n \n\nelse: \n print("No")']
['Runtime Error', 'Accepted']
['s025282910', 's748567647']
[9156.0, 8908.0]
[20.0, 30.0]
[236, 69]
p02594
u909359131
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['wqydcgy', 'n = int(input())\nif n>= 30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Accepted']
['s441746003', 's732216624']
[8960.0, 9144.0]
[21.0, 24.0]
[7, 66]
p02594
u909747282
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
['N,D = int(input().split())\ncount=0\nfor _ in range(N):\n p,q=int(input().split())\n if (p*p + q*q)<=D*D:\n count+=1\nprint(count)', 'import math\nN,D = map(int,input().split(" "))\ncount=0\nfor _ in range(N):\n p,q=map(int,input().split(" "))\n if (p*p + q*q)<=D*D:\n count+=1\nprint(count)', 'N,D = int(input().split(" "))\ncount=0\nfor _ in range(N):\n p,q=int(input().split(" "))\n if (p*p + q*q)<=D*D:\n count+=1\nprint(count)', 'N,D = map(int,input().split(" "))\ncount=0\nfor _ in range(N):\n p,q=map(int,input().split(" "))\n if (p*p + q*q)<=D*D:\n count+=1\nprint(count)', 'N,D = map(int,input().split())\n \nfor _ in range(N):\n count=0\n p,q=map(int,input().split())\n if (p**2 + q**2)**0.5 <=D:\n count+=1\nprint(count)\n', 'if X>=30:\n print("Yes")\nelse:\n print("No")', 'import math\nN,D = map(int,input().split(" "))\n \nfor _ in range(N):\n count=0\n p,q=map(int,input().split(" "))\n if (p**2 + q**2)**0.5 <=D**2:\n count+=1\nprint(count)', '\nN,D = map(int,input().split(" "))\n \nfor _ in range(N):\n count=0\n p,q=map(int,input().split(" "))\n if (p**2 + q**2) <=D**2:\n count+=1\nprint(count)', 'X=int(input())\n\nif X>=30:\n print("Yes")\nelse:\n print("No")']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s037824754', 's203582158', 's240190624', 's251864699', 's304061338', 's447768761', 's563598221', 's684709664', 's520064504']
[9024.0, 9168.0, 9092.0, 9172.0, 9160.0, 9012.0, 9164.0, 9048.0, 9036.0]
[27.0, 24.0, 28.0, 28.0, 28.0, 26.0, 26.0, 21.0, 30.0]
[129, 155, 135, 143, 148, 44, 168, 152, 60]
p02594
u911619829
2,000
1,048,576
You will turn on the air conditioner if, and only if, the temperature of the room is 30 degrees Celsius or above. The current temperature of the room is X degrees Celsius. Will you turn on the air conditioner?
["N = int(input())\nC=list(input())\nL=0\nR=0\nX=0\nfor i in range(N):\n L=i\n if L==N-1-R:\n break\n if C[i]=='W':\n for ii in range(N-L-R):\n R+=ii \n if C[N-1-R]=='R':\n C[L]='R'\n C[N-1-R]='W'\n X+=1\n R+=1\n if L==N-1-R:\n break\n break\nprint(X)\n", "X=int(input())\nif X>=30:\n print('Yes')\nelse:\n print('No')"]
['Runtime Error', 'Accepted']
['s192727322', 's534184504']
[9188.0, 9084.0]
[23.0, 31.0]
[300, 59]