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
p03206
u077019541
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input)\nif D == 25:\n print("Christmas")\nelif D ==24:\n print("Christmas Eve")\nelif D == 23:\n print("Christmas Eve Eve")\nelif D == 22:\n print("Christmas Eve Eve Eve")', 'D = int(input())\nif D == 25:\n print("Christmas")\nelif D ==24:\n print("Christmas Eve")\nelif D == 23:\n print("Christmas Eve Eve")\nelif D == 22:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s279177938', 's716420610']
[2940.0, 2940.0]
[18.0, 18.0]
[183, 185]
p03206
u079022116
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['b={25:"Christmas",24:"Christmas Eve",23:"Christmas Eve Eve",22:"Christmas Eve Eve Eve"}\nprint(b[int(input())])', 'a=int(input())\nb={25:"Christmas",24:"Christmas Eve",23:"Christmas Eve Eve",22:"Christmas Eve Eve Eve"}\nprint(b[int(input())])', 'b={25:"Christmas",24:"Christmas Eve",23:"Christmas Eve Eve",22:"Christmas Eve Eve Eve"}\nprint(b[int(input())]', 'b={25:"Christmas",24:"Christmas Eve",23:"Christmas Eve Eve",22:"Christmas Eve Eve Eve"}\nprint(b[int(input())])']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s153266474', 's927780242', 's966167914', 's592769101']
[2940.0, 3064.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0]
[114, 129, 113, 110]
p03206
u081688405
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print("Chirstmas" + " Eve"*(25-int(input())))', "def bread_cnt(lev):\n return 2 ** (lev + 1) - 2\n\n\ndef patty_cnt(lev):\n return 2 ** (lev + 1) - 1\n\n\ndef burger_cnt(lev):\n return 2 ** (lev + 2) - 3\n\n\ndef solve(n, x):\n return _solve(n, x, 0)\n\n\ndef _solve(n, x, p):\n total_s = burger_cnt(n)\n mid = (total_s + 1) // 2\n\n if x == 1:\n return p + (1 if n == 0 else 0)\n elif 1 < x <= mid:\n reach_mid = 1 if x == mid else 0\n return _solve(n - 1, x - 1 - reach_mid, p + reach_mid)\n elif mid < x < total_s:\n return _solve(n - 1, x - 2 - burger_cnt(n - 1), p + 1 + patty_cnt(n - 1))\n elif x == total_s:\n return p + patty_cnt(n)\n\n\nn, x = map(int, input().split(' '))\nprint(solve(n, x))\n", 'print("Christmas" + " Eve"*(25-int(input())))\n']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s393816919', 's549167573', 's331904248']
[2940.0, 3064.0, 2940.0]
[17.0, 17.0, 17.0]
[45, 686, 46]
p03206
u088020258
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D=int(input())\nif D==25:\n print('christmas')\nif D==24:\n print('christmas Eve')\nif D==23:\n print('christmas Eve Eve')\nif D==22:\n print('christmas Eve Eve Eve')", "D=int(input())\nif D==25:\n print('Christmas')\nif D==24:\n print('Christmas Eve')\nif D==23:\n print('Christmas Eve Eve')\nif D==22:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Accepted']
['s328893329', 's917122109']
[2940.0, 2940.0]
[17.0, 17.0]
[162, 162]
p03206
u088974156
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print("Christmas"+" Eve"*(25-int(input()))', 'print("Christmas"+" Eve"*(25-int(input())))']
['Runtime Error', 'Accepted']
['s910521997', 's955898505']
[2940.0, 2940.0]
[17.0, 17.0]
[42, 43]
p03206
u091051505
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\n\nif (d ==25):\n print("Christmas")\nelse if (d==24):\n print("Christmas Eve")\nelse if (d==23):\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")', 'def putty(n):\n if (n == 0):\n return [1]\n return [0]+putty(n-1)+[1]+putty(n-1)+[0]\n\nn, x = map(int, input().split())\na = putty(n)\na = a[:x]\nprint(sum(a))', 'd = int(input())\n\nif (d ==25):\n print("Christmas")\nelif (d==24):\n print("Christmas Eve")\nelif (d==23):\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Runtime Error', 'Accepted']
['s123425356', 's621257227', 's893775520']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[186, 165, 180]
p03206
u093033848
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N, K = map(int, input().split())\nh1, h2 = map(int, input().split())\nl = []\nl.append(h1)\nl.append(h2)\nfor i in range(N-2):\n h = int(input())\n global l\n if len(l) < K:\n l.append(h)\n elif len(l) >= K:\n if h > min(l):\n l[l.index(min(l))] = h\n if h < max(l):\n l[l.index(max(l))] = h\nprint(max(l) - min(l))', "D = int(input())\nif D == 25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelif D == 22:\n print('Christmas Eve Eve Eve')"]
['Runtime Error', 'Accepted']
['s860684752', 's407687354']
[3064.0, 3060.0]
[17.0, 19.0]
[355, 186]
p03206
u094565093
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D=int(input())\nif D==25:\n print('Christmas,')\nelif D==24:\n print('Christmas Eve')\nelif D ==23:\n print('Christmas Eve Eve')\nelif D==22:\n print('Christmas Eve Eve Eve')", "D=int(input())\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D ==23:\n print('Christmas Eve Eve')\nelif D==22:\n print('Christmas Eve Eve Eve')\n"]
['Wrong Answer', 'Accepted']
['s210988111', 's499035931']
[2940.0, 2940.0]
[18.0, 18.0]
[178, 178]
p03206
u097148635
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D=input()\nif D=="22":\n print("Christmas Eve Eve Eve")\nelif D=="23":\n print(Christmas Eve Eve")\nelif D=="24":\n print("Christmas Eve")\nelse:\n print\'"Christmas")', 'D=input()\nif D="22":\n print("Christmas Eve Eve Eve")\nelif D="23":\n print(Christmas Eve Eve")\nelif D="24":\n print("Christmas Eve")\nelse:\n print\'"Christmas")', 'D=input()\nif D=="22":\n print("Christmas Eve Eve Eve")\nelif D=="23":\n print("Christmas Eve Eve")\nelif D=="24":\n print("Christmas Eve")\nelse:\n print("Christmas")']
['Runtime Error', 'Runtime Error', 'Accepted']
['s146677933', 's304278241', 's734716090']
[2940.0, 2940.0, 2940.0]
[16.0, 17.0, 20.0]
[162, 159, 163]
p03206
u102242691
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['\nd = input()\n\nif d == "25":\n print("Christmas")\nelif d == "24":\n print("Christmas Eve")\nelif d == "23":\n print("Christmas Eve Eve")\n elif d == "22"\n print("Christmas Eve Eve Eve")\n', '\nd = input()\n\nif d == "25":\n print("Christmas")\nelif d == "24":\n print("Christmas Eve")\nelif d == "23":\n print("Christmas Eve Eve")\nelif d == "22":\n print("Christmas Eve Eve Eve")\n']
['Runtime Error', 'Accepted']
['s189781608', 's670970824']
[2940.0, 2940.0]
[17.0, 17.0]
[195, 192]
p03206
u102461423
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["print('Christmas'+' Eve'*(25-int(input()))", "print('Christmas'+' Eve'*(25-int(input())))"]
['Runtime Error', 'Accepted']
['s917301265', 's418543489']
[2940.0, 2940.0]
[17.0, 17.0]
[42, 43]
p03206
u109200592
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D=input()\nif D==25:\n print("Christmas")\nelif D==24:\n print("Christmas Eve")\nelif D==23:\n print("Christmas Eve Eve")\nelif D==22:\n print("Christmas Eve Eve Eve")\n ', 'D=input()\nif D==25:\n print("Christmas")\n elif D==24:\n print("Christmas Eve")\n elif D==23:\n print("Christmas Eve Eve")\n elif D==22:\n print("Christmas Eve Eve Eve")\n ', 'D=int(input())\nif D==25:\n print("Christmas")\nelif D==24:\n print("Christmas Eve")\nelif D==23:\n print("Christmas Eve Eve")\nelif D==22:\n print("Christmas Eve Eve Eve")']
['Wrong Answer', 'Runtime Error', 'Accepted']
['s155274485', 's234176993', 's549832730']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 18.0]
[172, 196, 168]
p03206
u111365362
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["#ABC116\nd = int(input())\ns = 'Chiristmas'\nwhile d != 25:\n s += ' Eve'\n d += 1\nprint(s)", "#ABC116\nd = int(input())\ns = 'Christmas'\nwhile d != 25:\n s += ' Eve'\n d += 1\nprint(s)"]
['Wrong Answer', 'Accepted']
['s757551888', 's055746918']
[2940.0, 3064.0]
[17.0, 17.0]
[88, 87]
p03206
u112247039
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['n,k = map(int,input().split())\nh = sorted([int(input()) for _ in range(n)])\nprint(min(h[j+k-1]-h[j] for j in range(n-k+1)))', 'n = int(input())\nprint("Christmas" + " Eve" * (25-n))']
['Runtime Error', 'Accepted']
['s554394818', 's633752870']
[9068.0, 8976.0]
[21.0, 23.0]
[123, 53]
p03206
u114648678
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d=int(input())\nif d=25:\n print("Christmas")\nelif d=24:\n print("Christmas Eve")\nelif d=23:\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")', 'd=int(input())\nif d==25:\n print("Christmas")\nelif d==24:\n print("Christmas Eve")\nelif d==23:\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s022949078', 's754593917']
[2940.0, 2940.0]
[17.0, 17.0]
[159, 162]
p03206
u118642796
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N,X = map(int,input().split())\n\nPforL = [1]\nHforL = [1]\nfor i in range(1,51):\n PforL.append(PforL[i-1]*2+1)\n HforL.append(HforL[i-1]*2+3)\n\ndef recursive(n,x):\n if x<=n:\n return 0\n if x<=HforL[n-1]+1:\n return recursive(n-1,x-1)\n else:\n return PforL[n-1]+1+recursive(n-1,x-HforL[n-1]-2)\n\nprint(recursive(N,X))\n', "D = int(input())\nif(D==22):\n print('Christmas Eve Eve Eve')\nelif(D==23):\n print('Christmas Eve Eve')\nelif(D==24):\n print('Christmas Eve')\nelse:\n print('Christmas')\n"]
['Runtime Error', 'Accepted']
['s211936997', 's479811971']
[3060.0, 2940.0]
[17.0, 17.0]
[344, 176]
p03206
u121732701
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = input()\nif D=="25":\n print("Christmas")\nelif D =="24":\n print("Christmas Eve")\nelif D =="23":\n print("Christmas Eve Eve")\nelif D == "22"\n print("Christmas Eve Eve Eve")', 'D = input()\nif D=="25":\n print("Christmas")\nelif D =="24":\n print("Christmas Eve")\nelif D =="23":\n print("Christmas Eve Eve")\nelif D == "22":\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s607809287', 's426983872']
[2940.0, 2940.0]
[17.0, 17.0]
[184, 185]
p03206
u122195031
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input())\nif D == 25\n\tprint("Christmas")\nelif D == 24\n\tprint("Christmas Eve")\nelif D == 23\n\tprint("Christmas Eve Eve")\nelif D == 22\n\tprint("Christmas Eve Eve Eve")', 'D = int(input())\nif D == 25:\n\tprint("Christmas")\nelif D == 24:\n\tprint("Christmas Eve")\nelif D == 23:\n\tprint("Christmas Eve Eve")\nelif D == 22:\n\tprint("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s271942249', 's703178051']
[2940.0, 2940.0]
[17.0, 17.0]
[170, 174]
p03206
u129214942
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['import numpy as np\n\n\n\nD = int(input())\n\n\n\nif D == 22:\n print("Chirstmas Eve Eve Eve")\nelif D == 23:\n print("Chirstmas Eve Eve")\nelif D == 24:\n print("Chirstmas Eve")\nelif D == 25:\n print("Chirstmas")\n', '\nD = int(input())\n\n\nif D == 22:\n print("Christmas Eve Eve Eve")\nelif D == 23:\n print("Christmas Eve Eve")\nelif D == 24:\n print("Christmas Eve")\nelif D == 25:\n print("Christmas")\n']
['Wrong Answer', 'Accepted']
['s645277985', 's388441463']
[22180.0, 2940.0]
[361.0, 16.0]
[258, 190]
p03206
u129315407
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input())\nresult = "Chrismas " + ("Eve " * (25 - D))\nprint(result[:-1])', 'D = int(input())\nresult = "Christmas " + ("Eve " * (25 - D))\nprint(result[:-1])']
['Wrong Answer', 'Accepted']
['s744675916', 's295792590']
[2940.0, 2940.0]
[18.0, 17.0]
[78, 79]
p03206
u129492036
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = input()\n\nif D==25:\n print("Christmas")\nelif D==24:\n print("Christmas Eve")\nelif D==25:\n print("Christmas Eve Eve")\nelif D==25:\n print("Christmas Eve Eve Eve")\n', '# -*- coding: utf-8 -*-\n\nD = input()\n\nif D==25:\n print("Christmas")\nelif D==24:\n print("Christmas Eve")\nelif D==23:\n print("Christmas Eve Eve")\nelif D==22:\n print("Christmas Eve Eve Eve")\n', '# -*- coding: utf-8 -*-\n\nD = int(input())\n\nif D==25:\n print("Christmas")\nelif D==24:\n print("Christmas Eve")\nelif D==23:\n print("Christmas Eve Eve")\nelif D==22:\n print("Christmas Eve Eve Eve")\n']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s055752027', 's295346446', 's788700102']
[2940.0, 2940.0, 2940.0]
[18.0, 18.0, 19.0]
[175, 200, 205]
p03206
u131264627
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["print({25 : 'Christmas', 24 : 'Christmas Eve', 23 : 'Christmas Eve Eve', 22 : 'Christmas Eve Eve Eve'}[input()])\n", "print({25 : 'Christmas', 24 : 'Christmas Eve', 23 : 'Christmas Eve Eve', 22 : 'Christmas Eve Eve Eve'}[int(input())])"]
['Runtime Error', 'Accepted']
['s161193967', 's850518616']
[2940.0, 2940.0]
[17.0, 17.0]
[113, 117]
p03206
u131405882
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nif D==25:\n\tprint('Christmas')\nif D == 24:\n\tprint('Christmas Eve')\nif D == 23:\n\tprint('Christmas Eve Eve')\nelse:\n\tprint('Christmas Eve Eve Eve')", 'D = int(input())\nif D==25:\n\tprint("Christmas")\nelif D == 24:\n\tprint("Christmas Eve")\nelif D == 23:\n\tprint("Christmas Eve Eve")\nelse:\n\tprint("Christmas Eve Eve Eve")']
['Wrong Answer', 'Accepted']
['s888020097', 's103458019']
[2940.0, 2940.0]
[17.0, 17.0]
[160, 164]
p03206
u150787983
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["import sys \n\nday = sys.argv[1]\nif day == '22'\n\n print('Christmas Eve Eve Eve')\nelif day == '23'\n print('Christmas Eve Eve')\nelif day == '24'\n print('Christmas Eve')\nelif day == '25'\n print('Christmas')\n", "import sys\n\nday = sys.argv[0]\nif day == '22':\n print('Christmas Eve Eve Eve')\nelif day == '23':\n print('Christmas Eve Eve')\nelif day == '24':\n print('Christmas Eve')\nelif day == '25':\n print('Christmas')", "import sys\nday = sys.argv[1]\nif day == '22':\n print('Christmas Eve Eve Eve')\nelif day == '23':\n print('Christmas Eve Eve')\nelif day == '24':\n print('Christmas Eve')\nelif day == '25':\n print('Christmas')", "\nday = input()\nif day == '22':\n print('Christmas Eve Eve Eve')\nelif day == '23':\n print('Christmas Eve Eve')\nelif day == '24':\n print('Christmas Eve')\nelif day == '25':\n print('Christmas')"]
['Runtime Error', 'Wrong Answer', 'Runtime Error', 'Accepted']
['s007852942', 's345550804', 's877619750', 's182419014']
[2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0]
[202, 203, 202, 188]
p03206
u151625340
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N, X = map(int, input().split())\n\ndef rep(N,X):\n if N == 1:\n if X == 1 or X == 5:\n return(0)\n else:\n return(X-1)\n else:\n n = 2**(N+2)-3\n a = n//2-(X-1)\n p = 2**N-1\n if a < -1:\n return(rep(N-1, abs(a)) + p + 1)\n elif a == -1 or a == 0 or a == 1:\n return(p + 1)\n else:\n return(rep(N-1, X-1))\nprint(rep(N,X))\n\n', "D = int(input())\nif D == 25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')\n"]
['Runtime Error', 'Accepted']
['s560966485', 's980345609']
[3188.0, 2940.0]
[19.0, 18.0]
[424, 179]
p03206
u153419200
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["a=int(input())\nif a=25:\n print('Christmas')\nelif a=24:\n print('Christmas Eve')\nelif a=23:\n print('Christmas Eve Eve')\nelif a=22:\n print('Christmas Eve Eve Eve')\n\n", "a=int(input())\nif a=25:\n print('Christmas')\nelif a=24:\n print('Christmas Eve')\nelif a=23:\n print('Christmas Eve Eve')\nelif a=22:\n print('Christmas Eve Eve Eve')", "a=int(input())\nif a==25:\n print('Christmas')\nelif a==24:\n print('Christmas Eve')\nelif a==23:\n print('Christmas Eve Eve')\nelif a==22:\n print('Christmas Eve Eve Eve')"]
['Runtime Error', 'Runtime Error', 'Accepted']
['s001655967', 's526920293', 's564862609']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[166, 164, 168]
p03206
u154191677
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['n, k = map(int, input().split())\nh = [int(input()) for i in range(n)]\nh.sort()\nanswer = h[-1] - h[0]\nfor i in range(n - k + 1):\n answer = min(answer, h[i + k - 1] - h[i])\nprint(answer)', 'n, k = map(int, input().split())\nh = [int(input()) for i in range(n)]\nh.sort()\nanswer = h[-1] - h[0]\nfor i in range(n - k + 1):\n answer = min(answer, h[i + k - 1] - h[i])\nprint(answer)', "d = int(input())\nif (d == 22):\n print('Christmas Eve Eve Eve')\nelif (d == 23):\n print('Christmas Eve Eve')\nelif (d == 24):\n print('Christmas Eve')\nelse:\n print('Christmas')"]
['Runtime Error', 'Runtime Error', 'Accepted']
['s026976109', 's367056502', 's207428868']
[3060.0, 3060.0, 2940.0]
[18.0, 18.0, 17.0]
[187, 187, 184]
p03206
u157232135
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['def main():\n d={25:"Chiristmas", 24:"Christmas Eve", 23:"Christmas Eve Eve", 22:"Christmas Eve Eve Eve"}\n print(d[int(input())])\n \nif __name__ == "__main__":\n main()', 'def main():\n d={25:"Christmas", 24:"Christmas Eve", 23:"Christmas Eve Eve", 22:"Christmas Eve Eve Eve"}\n print(d[int(input())])\n \nif __name__ == "__main__":\n main()']
['Wrong Answer', 'Accepted']
['s750840917', 's153501374']
[9004.0, 8964.0]
[24.0, 22.0]
[177, 176]
p03206
u158620769
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N = input()\n\nif(N = 25) : \n\tprint("Christmas")\nif(N = 24) : \n\tprint("Christmas Eve")\nif(N = 23) : \n\tprint("Christmas Eve Eve")\nif(N = 22) : \n\tprint("Christmas Eve Eve Eve")\n\n', 'N= input()\n \nif(N == "25") : \n\tprint(\'Christmas\')\nif(N == "24") : \n\tprint("Christmas Eve")\nif(N == "23") : \n\tprint("Christmas Eve Eve")\nif(N == "22") : \n\tprint("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s276898578', 's791422877']
[2940.0, 2940.0]
[17.0, 16.0]
[174, 184]
p03206
u160244242
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['start = list(map(int, input().split()))\nn,k = start[0], start[1]\n\nlst = [int(input()) for i in range(n)]\n\nlst.sort()\nlst.reverse()\n\ndiff_lst = list()\nfor i in range(n-k+1):\n diff_lst.append(lst[i] - lst[i+k-1])\nprint(min(diff_lst))', "N = int(input())\nif N == 22:\n print('Christmas Eve Eve Eve')\nif N == 23:\n print('Christmas Eve Eve')\nif N == 24:\n print('Christmas Eve')\nif N == 25:\n print('Christmas')"]
['Runtime Error', 'Accepted']
['s801660880', 's939310257']
[3060.0, 2940.0]
[18.0, 18.0]
[234, 180]
p03206
u165268875
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input())\n\nprint("christmas" + "\\tEve" * (25-D))\n', 'D = int(input())\n\nprint("christmas" + " Eve" * (25-D))\n', '\nD = int(input())\n\nprint("christmas" + "Eve" * (25-D))\n', '\nD = int(input())\n\nprint("christmas"+" Eve"*(25-D))\n', 'D = int(input())\n\nprint("christmas" + " Eve" * (25-D))\n', '\nD = int(input())\n\nprint("Christmas" + " Eve" * (25-D))\n']
['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted']
['s096956127', 's126281840', 's562301450', 's820771487', 's993365548', 's519899498']
[2940.0, 2940.0, 2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0, 17.0, 17.0]
[56, 55, 55, 52, 55, 56]
p03206
u169165784
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\ns = ['Christrmas']\n[s.append('Eve') for _ in range(25 - D)] \nprint(' '.join(s))", "D = int(input())\ns = ['Christmas']\n[s.append('Eve') for _ in range(25 - D)] \nprint(' '.join(s))"]
['Wrong Answer', 'Accepted']
['s254694203', 's756102957']
[2940.0, 2940.0]
[17.0, 17.0]
[96, 95]
p03206
u170324846
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input())\nC = "Chiristmas"\nif 22 <= D <= 25:\n for i in range(D, 25):\n C += " Eve"\n\tprint(C)', 'D = int(input())\nC = "Chiristmas"\nif 22 <= D <= 25:\n\tfor i in range(D, 25):\n\t\tC += " Eve"\n\tprint(C)', 'D = int(input())\nC = "Christmas"\nif 22 <= D <= 25:\n\tfor i in range(D, 25):\n\t\tC += " Eve"\n\tprint(C)']
['Runtime Error', 'Wrong Answer', 'Accepted']
['s262237116', 's432171966', 's523158545']
[2940.0, 2940.0, 2940.0]
[18.0, 18.0, 18.0]
[102, 99, 98]
p03206
u174273188
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['def solve():\n d = int(input())\n eves = 25 - d\n return "Christmas" + " Eve" + eves\n\n\nif __name__ == "__main__":\n print(solve())\n', 'def solve():\n d = int(input())\n eves = 25 - d\n return "Christmas" + " Eve" * eves\n\n\nif __name__ == "__main__":\n print(solve())\n']
['Runtime Error', 'Accepted']
['s602998179', 's216395030']
[2940.0, 2940.0]
[17.0, 17.0]
[139, 139]
p03206
u176645218
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["import numpy as np\nN,K = map(int,input().split(' '))\nh = []\nfor i in [0]*N:\n\th.append(int(input()))\n\n\ndef sort(l):\n\tm = sum(l)/len(l)\n\ta = [x for x in l if x < m]\n\tb = [x for x in l if m <= x]\n\tif a == []:\n\t\treturn b\n\tif b == []:\n\t\treturn a\n\treturn sort(a)+sort(b)\n\nh = np.array(h)\nsh = np.sort(h)\n#sh = sort(h)\nans = max(h)\nfor i in range(0,N-K+1):\n\ts = (sh[i+K-1] - sh[i])\n\tif s < ans:\n\t\tans = s\nprint(ans)\n\n", "D = int(input())\nif D is 25:\n\tprint('Christmas')\nif D is 24:\n\tprint('Christmas Eve')\nif D is 23:\n\tprint('Christmas Eve Eve')\nif D is 22:\n\tprint('Christmas Eve Eve Eve')\n\n"]
['Runtime Error', 'Accepted']
['s398480539', 's461297899']
[21868.0, 3316.0]
[1147.0, 19.0]
[410, 170]
p03206
u182004566
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input())\n\nif D == 22:\n print("Christmas Eve Eve Eve")\nelse if D == 23:\n print("Christmas Eve Eve")\nelse if D == 24:\n print("Christmas Eve")\nelse if D == 25:\n print("Christmas")', 'D = int(input())\n\nif D == 22:\n print("Christmas Eve Eve Eve")\nelif D == 23:\n print("Christmas Eve Eve")\nelif D == 24:\n print("Christmas Eve")\nelif D == 25:\n print("Christmas")\n']
['Runtime Error', 'Accepted']
['s329858415', 's507376956']
[2940.0, 2940.0]
[17.0, 17.0]
[196, 188]
p03206
u185464141
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\nif d == 25:\n\tprint('Christmas')\nelif d == 24:\n\tprint('Christmas Eve')\nelif d == 23:\n\tprint('Christmas Eve Eve')\nelse d == 22:\n\tprint('Christmas Eve Eve Eve')\n", 'd = int(input())\nif d == 25:\n\tprint("Christmas")\nelif d == 24:\n\tprint("Christmas Eve")\nelif d == 23:\n\tprint("Christmas Eve Eve")\nelse:\n\tprint("Christmas Eve Eve Eve")\n']
['Runtime Error', 'Accepted']
['s113729450', 's053788222']
[2940.0, 2940.0]
[18.0, 20.0]
[175, 167]
p03206
u185802209
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['n, k = map(int,(input().split()))\nh = []\nfor i in range(n):\n h.append(int(input()))\nh.sort()\nmin=h[-1]-h[0]\nfor i in range(n-k+1):\n if h[i+k-1]-h[i] < min:\n min = h[i+k-1]-h[i]\nprint(min)', 's=int(input())\nif s==25:\n print("Christmas")\nelif s==24:\n print("Christmas Eve")\nelif s==23:\n print("Christmas Eve Eve")\nelif s==22:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s224636203', 's501519619']
[3060.0, 3060.0]
[17.0, 20.0]
[200, 176]
p03206
u188366988
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["import sys \na = sys.argv[1]\nif a == '25':\n print('Christmas')\nif a == '24':\n print('Christmas Eve')\nif a == '23':\n print('Christmas Eve Eve')\nif a == '22':\n print('Christmas Eve Eve Eve')\n", "import sys \na = sys.argv[0]\nif a == '25':\n print('Christmas')\nif a == '24':\n print('Christmas Eve')\nif a == '23':\n print('Christmas Eve Eve')\nif a == '22':\n print('Christmas Eve Eve Eve')\n", "a = input()\nif a == '25':\n print('Christmas')\nif a == '24':\n print('Christmas Eve')\nif a == '23':\n print('Christmas Eve Eve')\nif a == '22':\n print('Christmas Eve Eve Eve')\n"]
['Runtime Error', 'Wrong Answer', 'Accepted']
['s278006142', 's825921018', 's235588886']
[2940.0, 2940.0, 2940.0]
[17.0, 18.0, 18.0]
[200, 200, 184]
p03206
u192154323
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\nif d ==25:\n print('Chrismas')\nelif d==24:\n print('Christmas Eve')\nelif d==23:\n print('Christmas Eve Eve')\nelif d==22:\n print('Christmas Eve Eve Eve')\n", "d = int(input())\nif d ==25:\n print('Christmas')\nelif d==24:\n print('Christmas Eve')\nelif d==23:\n print('Christmas Eve Eve')\nelif d==22:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Accepted']
['s618417275', 's568567180']
[2940.0, 2940.0]
[18.0, 17.0]
[171, 171]
p03206
u192895591
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = input()\nbuf = 'Eve' * (min(max(25 - int(D), 0), 3))\nprint('Chrimstmas {}'.format(buf))", "D = input()\nbuf = ' Eve' * (min(max(25 - int(D), 0), 3))\nprint('Christmas{}'.format(buf))"]
['Wrong Answer', 'Accepted']
['s095909452', 's879089142']
[2940.0, 2940.0]
[18.0, 18.0]
[90, 89]
p03206
u197300773
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['def f(level,x):\n if level==0: return x\n\n if x in [1,0]:\n return 0\n elif x==b[level][0]:\n return b[level][1]\n elif 2<=x<b[level-1][0]+2:\n return f(level-1,x-1)\n elif x==b[level-1][0]+2:\n return b[level-1][1]+1\n elif b[level-1][0]+2<x<b[level][0]:\n return b[level-1][1]+1+f( level-1, x-(b[level-1][0]+2))\n\nN,X=map(int,input().split())\nb=[[1,1] for i in range(N+1)]\nfor i in range(1,N+1):\n b[i][0]=b[i-1][0]*2+3\n b[i][1]=b[i-1][1]*2+1\n\nprint(f(N,X))', 'n=int(input())\n\ndic={22:"Christmas Eve Eve Eve",23:"Christmas Eve Eve",24:"Christmas Eve",25:"Christmas"}\n\nprint(dic[n])']
['Runtime Error', 'Accepted']
['s006716521', 's117272912']
[3064.0, 2940.0]
[18.0, 17.0]
[505, 120]
p03206
u197577508
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["if D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D==23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')\n ", "D = int(input())\n\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D==23:\n print('Christmas Eve Eve')\nellif D==22:\n print('Christmas Eve Eve Eve')\n", "D = int(input())\n\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D==23:\n print('Christmas Eve Eve')\nellif D==22:\n print('Christmas Eve Eve Eve')", "D = int(input())\n\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D==23:\n print('Christmas Eve Eve')\nelif D==22:\n print('Christmas Eve Eve Eve')\n"]
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s201078908', 's346715024', 's688193504', 's687109094']
[2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0]
[160, 181, 180, 180]
p03206
u202570162
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\n\nprint('Cristmas'+' Eve'*(25-d))\n", "d = int(input())\n\nprint('Christmas'+' Eve'*(25-d))\n"]
['Wrong Answer', 'Accepted']
['s685714951', 's698559478']
[2940.0, 2940.0]
[19.0, 17.0]
[50, 51]
p03206
u203339404
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\n\nif d == 22:\n print("Christmas Eve Eve Eve")\nelif d == 23:\n print("Christmas Eve Eve")\nelif d == 24:\n print("Christmas Eve")\nelif d == 25:\n print("Christmas")\nelse:\n break\n', 'd = int(input())\n \nif d == 22:\n print("Christmas Eve Eve Eve")\nelif d == 23:\n print("Christmas Eve Eve")\nelif d == 24:\n print("Christmas Eve")\nelif d == 25:\n print("Christmas")\nelse:\n exit()']
['Runtime Error', 'Accepted']
['s128068214', 's606151057']
[2940.0, 2940.0]
[17.0, 17.0]
[194, 195]
p03206
u204260373
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d=input()\nif d==25:\n print("Christmas")\nelif d==24:\n print("Christmas Eve")\nelif d==23:\n print("Christmas Eve Eve")\nelif d==22:\n print("Christmas Eve Eve Eve")', 'd=input()\nif d==25:\n print("Christmas")\nelif d==24:\n print("Christmas Eve")\nelif d==23:\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")\n', 'd=input()\nif d=="25":\n print("Christmas")\nelif d=="24":\n print("Christmas Eve")\nelif d=="23":\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")\n']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s431550806', 's449636166', 's992137607']
[2940.0, 2940.0, 2940.0]
[18.0, 17.0, 17.0]
[163, 158, 164]
p03206
u204616996
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D=int(input())\nif D=25:\n a='Christmas'\nelif D=24:\n a='Christmas Eve'\nelif D=23:\n a='Christmas Eve Eve'\nelse:\n a='Christmas Eve Eve Eve'\nprint(a)", "D=int(input())\nif D==25:\n a='Christmas'\nelif D==24:\n a='Christmas Eve'\nelif D==23:\n a='Christmas Eve Eve'\nelse:\n a='Christmas Eve Eve Eve'\nprint(a)\n"]
['Runtime Error', 'Accepted']
['s440197661', 's676475586']
[2940.0, 2940.0]
[17.0, 17.0]
[148, 152]
p03206
u206570055
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N, K = map(int, input().split())\ntrees = [int(input()) for i in range(N)]\ntrees.sort()\nans = 10 ** 10\nfor i in range(N - K + 1):\n ans = min(ans, abs(trees[i]-trees[i+K-1]))\nprint(ans)', 'D = int(input())\nsa = 25 - D\nans = "Christmas"\nfor _ in range(sa):\n ans += " Eve"\nprint(ans)']
['Runtime Error', 'Accepted']
['s941987702', 's562428115']
[3060.0, 2940.0]
[18.0, 17.0]
[186, 95]
p03206
u207822067
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nprint('Christmas'+'Eve'*(25 - D)", "D = int(input())\nprint('Christmas'+' Eve'*(25 - D))"]
['Runtime Error', 'Accepted']
['s074124629', 's875163156']
[2940.0, 2940.0]
[17.0, 17.0]
[49, 51]
p03206
u215018528
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nprint('Chiristmas' if D == 25 else 'Chiristmas Eve' if D == 24 else 'Chiristmas Eve Eve' if D == 23 else 'Chiristmas Eve Eve Eve')\n", "D = int(input())\nprint('Christmas' if D == 25 else 'Christmas Eve' if D == 24 else 'Christmas Eve Eve' if D == 23 else 'Christmas Eve Eve Eve')\n\n"]
['Wrong Answer', 'Accepted']
['s348824636', 's013568392']
[2940.0, 2940.0]
[17.0, 17.0]
[148, 145]
p03206
u216631280
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\nmessage = ''\nif d == 25:\n\tmassage = 'Christmas'\nelif d == 24:\n\tmassage = 'Christmas Eve'\nelif d == 23:\n\tmassage = 'Christmas Eve Eve'\nelse:\n\tmassage = 'Christmas Eve Eve Eve'\n\nprint(message)", "d = int(input())\nmessage = ''\nif d == 25:\n\tmassage = 'Christmas'\nelif d == 24:\n\tmassage = 'Christmas Eve'\nelif d == 23:\n\tmassage = 'Christmas Eve Eve'\nelse:\n\tmassage = 'Christmas Eve Eve Eve'", "d = int(input())\nmessage = ''\nif d == 25:\n\tmessage = 'Christmas'\nelif d == 24:\n\tmessage = 'Christmas Eve'\nelif d == 23:\n\tmessage = 'Christmas Eve Eve'\nelse:\n\tmessage = 'Christmas Eve Eve Eve'\n\nprint(message)"]
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s050586687', 's557727393', 's607265754']
[2940.0, 2940.0, 2940.0]
[19.0, 17.0, 18.0]
[207, 191, 207]
p03206
u217086212
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N,K = list(map(int, input().split()))\nh = [int(input()) for i in range(N)]\ncandidate = None\nh.sort()\nfor i in range(N-K+1):\n tmp = h[i+K-1] - h[i]\n if candidate == None or tmp < candidate:\n candidate = tmp\nprint(candidate)', 'ans = "Christmas"\nfor i in range(25-D):\n ans += " Eve"\nprint(ans)', 'D = int(input())\nans = "Christmas"\nfor i in range(25-D):\n ans += " Eve"\nprint(ans)']
['Runtime Error', 'Runtime Error', 'Accepted']
['s616659459', 's703536269', 's552785867']
[3060.0, 2940.0, 2940.0]
[18.0, 17.0, 17.0]
[235, 68, 85]
p03206
u218843509
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\nif d == 25:\n\tprint("Christmas")\nelif d == 24:\n\tprint("Christmas Eve")\nelif d == 23:\n\tprint("Christmas Eve Eve"):\nelse:\n\tprint("Christmas Eve Eve Eve")', 'd = int(input())\nif d == 25:\n\tprint("Christmas")\nelif d == 24:\n\tprint("Christmas Eve")\nelif d == 23:\n\tprint("Christmas Eve Eve")\nelse:\n\tprint("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s175233305', 's233249697']
[2940.0, 3316.0]
[17.0, 19.0]
[167, 166]
p03206
u225110485
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = input()\nif D ==25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')", "D = input()\nif D ==25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelse D == 22:\n print('Christmas Eve Eve Eve')", "D = input()\nif D ==25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelif D == 22:\n print('Christmas Eve Eve Eve')", "D = input()\nif D ==25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')", "D = int(input())\nif D ==25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve')\nelif D == 22:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Runtime Error', 'Wrong Answer', 'Wrong Answer', 'Accepted']
['s079905896', 's340622541', 's463571810', 's814645807', 's253714887']
[2940.0, 2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0, 18.0]
[172, 180, 180, 172, 185]
p03206
u227082700
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print("Chiristmas"+"Eve"*(25-int(input())))', 'print("Chiristmas"+" Eve"*(25-int(input())))\n', 'print("Christmas"+" Eve"*(25-int(input())))\n']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s248097164', 's410100719', 's721989351']
[2940.0, 2940.0, 2940.0]
[18.0, 17.0, 17.0]
[43, 45, 44]
p03206
u229518917
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D=int(input())\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D=23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')", "D=int(input())\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D==23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')"]
['Runtime Error', 'Accepted']
['s403719070', 's984717477']
[2940.0, 2940.0]
[17.0, 17.0]
[169, 170]
p03206
u237634011
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\nif d = 25:\n print("Christmas")\nelif d = 24:\n print("Christmas Eve")\nelif d = 23:\n print("Christmas Eve Eve")\nelif d = 22:\n print("Christmas Eve Eve Eve")', 'd = int(input())\nif d == 25:\n print("Christmas")\nelif d == 24:\n print("Christmas Eve")\nelif d == 23:\n print("Christmas Eve Eve")\nelif d == 22:\n print("Christmas Eve Eve Eve")\n']
['Runtime Error', 'Accepted']
['s569923883', 's893006898']
[9008.0, 9036.0]
[26.0, 24.0]
[174, 179]
p03206
u238704641
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\n\nif d == 25:\n out = \'Christmas\'\nif d == 24:\n out = \'Christmas Eve\'\nif d == 23:\n out = \'Christmas Eve Eve\'\nif d == 22:\n out = \'Christmas Eve Eve Eve\'\n\n"""\ndiff = d - 25\nif diff == 0:\n out = \'Christmas\'\n else:\n"""', "d = int(input())\n \nif d == 25:\n out = 'Christmas'\nif d == 24:\n out = 'Christmas Eve'\nif d == 23:\n out = 'Christmas Eve Eve'\nif d == 22:\n out = 'Christmas Eve Eve Eve'\n\nprint(out)"]
['Wrong Answer', 'Accepted']
['s909607605', 's608507667']
[2940.0, 2940.0]
[18.0, 17.0]
[234, 182]
p03206
u239301277
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d=int(input())\nif d==25:\n\tprint('Christmas')\nelse d==24:\n print('Christmas Eve ')\nelse d==23:\n print('Christmas Eve Eve')\nelse d==22:\n print('Christmas Eve Eve Eve ')", "d=int(input())\nif d==25:\n\tprint('Christmas')\nelif d==24:\n print('Christmas Eve')\nelif d==23:\n print('Christmas Eve Eve')\nelse d==22:\n print('Christmas Eve Eve Eve')", "d=int(input())\nif d==25:\n\tprint('Christmas')\nelif d==24:\n print('Christmas Eve ')\nelif d==23:\n print('Christmas Eve Eve')\nelse d==22:\n print('Christmas Eve Eve Eve ')", "d=int(input())\nif d==25:\n\tprint('Christmas')\nelif d==24:\n print('Christmas Eve')\nelif d==23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')"]
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s012736437', 's668986342', 's922020783', 's391152625']
[2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0]
[175, 173, 175, 167]
p03206
u239316561
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\nif d == 22:\n print('CHristmas Eve Eve Eve')\nelif d == 23:\n print('CHristmas Eve Eve')\nelif d == 24:\n print('CHristmas Eve')\nelif d == 25:\n print('CHristmas')", "d = int(input())\nif d == 22:\n print('Christmas Eve Eve Eve')\nelif d == 23:\n print('Christmas Eve Eve')\nelif d == 24:\n print('Christmas Eve')\nelif d == 25:\n print('Christmas')"]
['Wrong Answer', 'Accepted']
['s685037647', 's830462117']
[2940.0, 2940.0]
[17.0, 17.0]
[186, 186]
p03206
u243159381
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d=int(input())\nif d==22:\n print('Christmas Eve Eve Eve')\nelif d==23:\n print('Chistmas Eve Eve')\nelif d==24:\n print('Christams Eve')\nelse:\n print('Christams')", "d=int(input())\nif d==22:\n print('Christmas Eve Eve Eve')\nelif d==23:\n print('Christmas Eve Eve')\nelif d==24:\n print('Christams Eve')\nelse:\n print('Christams')", "d=int(input())\nif d==25:\n print('Christmas')\nelif d==24:\n print('Christmas Eve')\nelif d==23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s896742547', 's984260289', 's480565966']
[9108.0, 9076.0, 9040.0]
[26.0, 24.0, 21.0]
[169, 170, 170]
p03206
u244836567
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['a=input()\nif a==25:\n print("Christmas")\nif a==24:\n print("Christmas Eve")\nif a==23:\n print("Christmas Eve Eve")\nif a==22:\n print("Christmas Eve Eve Eve")', 'a=input()\na=int(a)\nif a==25:\n print("Christmas")\nif a==24:\n print("Christmas Eve")\nif a==23:\n print("Christmas Eve Eve")\nif a==22:\n print("Christmas Eve Eve Eve")']
['Wrong Answer', 'Accepted']
['s207218887', 's321980853']
[9056.0, 9100.0]
[27.0, 25.0]
[157, 166]
p03206
u247465867
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['#2019/10/03\nD = open(0).read()\nprint("Christmas" if D == "25" else "Christmas Eve" if D == "24" else "Christmas Eve Eve" if D == "23" else "Christmas Eve Eve Eve")', '#2019/10/03\nD = open(0).read()\nprint("Christmas" if D == "25" else "Christmas Eve" if D == "24" else "Christmas Eve Eve" if D == "23" else "Christmas Eve Eve Eve")', '#2019/10/03\nD = open(0).read()\nprint("Christmas" if D == "25" else "Christmas Eve" if D == "24" else "Christmas Eve Eve" if D == "23" else "Christmas Eve Eve Eve")', '#2019/10/03\nD = int(open(0).read())\n# print("Christmas" if D == "25" else "Christmas Eve" if D == "24" else "Christmas Eve Eve" if D == "23" else "Christmas Eve Eve Eve")\nprint(\'Christmas\' + \' Eve\' * (25-D))']
['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Accepted']
['s482469483', 's579484758', 's605344721', 's501879578']
[2940.0, 2940.0, 2940.0, 2940.0]
[19.0, 16.0, 17.0, 17.0]
[163, 163, 163, 207]
p03206
u252401277
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d=int(input())\ni=25-d\n\nprint('Chirstmas'+i*' Eve')", "d=25-int(input())\nprint('Christmas'+d*' Eve')"]
['Wrong Answer', 'Accepted']
['s798635155', 's622934296']
[2940.0, 2940.0]
[17.0, 17.0]
[50, 45]
p03206
u252828980
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['n, k = map(int,input().split())\nli = list(int(input()) for i in range(n))\n\nli.sort()\nnum = 0\nli2 = []\nfor i in range(len(li)-k+1):\n li2.append( max(li[i:i+k]) - min(li[i:i+k]))\n\nprint(min(li2))', 'n = int(input())\nif n == 25:\n print("Christmas") \nelif n == 24:\n print("Christmas Eve")\nelif n == 23:\n print("Christmas Eve Eve")\nelif n == 22:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s825788185', 's603835295']
[3064.0, 2940.0]
[18.0, 17.0]
[196, 187]
p03206
u259755734
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nif D == 25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve') \nelif D == 22:\n print('Christmas Eve Eve Eve')\n D = int(input())\nif D == 25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve') \nelif D == 22:\n print('Christmas Eve Eve Eve')\n ", "D = int(input())\nif D == 25:\n print('Christmas')\nelif D == 24:\n print('Christmas Eve')\nelif D == 23:\n print('Christmas Eve Eve') \nelif D == 22:\n print('Christmas Eve Eve Eve')"]
['Runtime Error', 'Accepted']
['s156125324', 's253608175']
[2940.0, 3060.0]
[17.0, 19.0]
[362, 179]
p03206
u262084284
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["# coding: utf-8\n\nd = int(input())\n\ns = 'Chrismas'\nif d == 25:\n x = s\nelif d == 24:\n x = s + ' Eve'\nelif d == 23:\n x = s + ' Eve'*2\nelif d == 22:\n x = s + ' Eve'*3\n\nprint(x)\n", "# coding: utf-8\n\nd = int(input())\n\ns = 'Christmas'\nif d == 25:\n x = s\nelif d == 24:\n x = s + ' Eve'\nelif d == 23:\n x = s + ' Eve'*2\nelif d == 22:\n x = s + ' Eve'*3\n\nprint(x)\n"]
['Wrong Answer', 'Accepted']
['s600086906', 's650342881']
[2940.0, 2940.0]
[17.0, 17.0]
[185, 186]
p03206
u263830634
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["N, X = map(int, input().split())\n\na = [1]\np = [1]\nfor i in range(1, N+1):\n a.append(2 * a[i-1] + 3)\n p.append(2 * a[i-1] + 1)\n\ndef calc(N, X): \n if N == 0: \n if X == 0:\n return 0\n else:\n return 1\n if X == 1:\n return 0\n # print (N - 1)\n if 1 <= X <= a[N - 1]:\n # print ('A')\n return calc(N - 1, X - 1)\n if X == 2 + a[N - 1]:\n # print ('B')\n return p[N - 1] + 1\n if 2 +a[N - 1] < X <= 2 + 2 * a[N - 1]:\n # print ('C')\n return p[N - 1] + 1 + calc(N - 1, X - 2 - a[N - 1])\n if X == 3 + 2 * 2 * a[N - 1]:\n # print ('D')\n return 2 * p[N - 1] + 1\n\nprint (calc(N, X))", "D = int(input())\nprint ('Christmas', end = '')\nfor i in range(25 - D):\n print (' Eve', end = '')\nprint ()\n"]
['Runtime Error', 'Accepted']
['s213154979', 's617137434']
[3064.0, 2940.0]
[17.0, 17.0]
[773, 109]
p03206
u264681142
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\n\nif d == 25:\n print('Chiristmas')\nelif d == 24:\n print('Chiristmas Eve')\nelif d == 23:\n print('Chiristmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')", 'a = int(input())\nif a == 22:\n\tprint("Christmas Eve Eve Eve")\nelif a == 23:\n\tprint("Christmas Eve Eve")\nelif a == 24:\n\tprint("Christmas Eve")\nelif a == 25:\n\tprint("Christmas")']
['Wrong Answer', 'Accepted']
['s029234519', 's651334115']
[2940.0, 2940.0]
[17.0, 17.0]
[174, 174]
p03206
u267300160
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N,K = map(int,input().split())\nh_list = [int(input()) for i in range(N)]\nh_list.sort()\nresult = []\nprint(min([h_list[i+K-1]-h_list[i] for i in range(N-K+1)]))', 'Day = int(input())\nif(Day == 25):\n print("Christmas")\nelif(Day == 24):\n print("Christmas Eve")\nelif(Day == 23):\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s316701639', 's430611297']
[2940.0, 2940.0]
[17.0, 17.0]
[158, 181]
p03206
u276317406
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["n,k = input().split(' ')\nn = int(n)\nk = int(k)\nh = []\nfor i in range(n):\n h.append(int(input()))\nh.sort()\ndiffs = []\nfor i in range(n-k+1):\n diffs.append(h[i+k] - h[i])\nprint(min(diffs))\n", "day={\n 25:'Christmas',\n 24:'Christmas Eve',\n 23:'Christmas Eve Eve',\n 22:'Christmas Eve Eve Eve'\n}\n\na = int(input())\nprint(day[a])\n"]
['Runtime Error', 'Accepted']
['s722119531', 's811298059']
[3188.0, 3316.0]
[18.0, 19.0]
[193, 143]
p03206
u280978334
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['eve="Christmas"\nfor x in range(input()):\n\teve += "Eve"\nprint(eve)', 'eve="Christmas"\nfor x in range(25,int(input()),-1):\n\teve += " Eve"\nprint(eve)']
['Runtime Error', 'Accepted']
['s466572353', 's376968667']
[2940.0, 3060.0]
[18.0, 19.0]
[65, 77]
p03206
u288430479
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['n = int(input())\nT,A = map(int,input().split())\nh = list(map(int,input().split()))\nl =[]\nfor i in range(n):\n a = T - h[i]*0.006\n b = int(abs(a-A))\n l.append(b)\nc = l.index(min(l))\nprint(c+1)', 'n = int(input())\nT,A = map(int,input().split())\nh = list(map(int,input().split()))\nl =[]\nfor i in range(n):\n a = T - h[i]*0.006\n b = int(abs(a-A))\n l.append(b)\nc = l.index(min(l))\nprint(c+1)', 'D = int(input())\nif D =22:\n print("Christmas Eve Eve Eve")\n \nelif D = 23:\n print("Christmas Eve Eve")\n \nelif D = 24:\n print("Christmas Eve")\n \nelif D = 25:\n print("Christmas")', 'D = int(input())\nif D == 22:\n print("Christmas Eve Eve Eve")\n \nelif D == 23:\n print("Christmas Eve Eve")\n \nelif D == 24:\n print("Christmas Eve")\n \nelif D == 25:\n print("Christmas")']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s188039135', 's332664927', 's431614356', 's741981525']
[3064.0, 3064.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0]
[193, 193, 182, 187]
p03206
u296150111
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['a=input()\n\nif a==25:\n print("Chiristmas")\nelif a==24:\n print("Christmas Eve")\nelif a==23:\n print(\'Christmas Eve Eve\')\nelse: \n print(\'Christmas Eve Eve Eve\')\n', 'a=int(input())\n\nif a == 25:\n print("Chiristmas")\nelif a == 24:\n print("Christmas Eve")\nelif a == 23:\n print(\'Christmas Eve Eve\')\nelse: \n print(\'Christmas Eve Eve Eve\')\n', 'a=int(input())\n\nif a == 25:\n print("Christmas")\nelif a == 24:\n print("Christmas Eve")\nelif a == 23:\n print(\'Christmas Eve Eve\')\nelse: \n print(\'Christmas Eve Eve Eve\')\n']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s387970341', 's965031460', 's680655616']
[2940.0, 2940.0, 2940.0]
[17.0, 18.0, 17.0]
[157, 168, 167]
p03206
u302957509
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print(“Christmas” + “ “.join([“Eve”] * int(input())))', 'print("Christmas" + (" Eve" * (25 - int(input()))))\n']
['Runtime Error', 'Accepted']
['s917214440', 's026815783']
[2940.0, 2940.0]
[17.0, 17.0]
[65, 52]
p03206
u303059352
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print("Christmas"+" Eve"*(25-int(input()))', 'print("Christmas"+sum([" Eve" for _ in range(25-input())]))', 'print("Christmas" + " Eve" * (25 - int(input())))']
['Runtime Error', 'Runtime Error', 'Accepted']
['s110295602', 's683780818', 's304325607']
[2940.0, 2940.0, 2940.0]
[18.0, 18.0, 17.0]
[42, 59, 49]
p03206
u306071800
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['n = int(input())\nlst = []\n\nfor i in range(n):\n item = int(input())\n lst.append(item)\n\ngoods = sorted(lst, reverse=True)\ngoods[0] = goods[0] // 2\n\nprint(sum(goods))\n', 'n = int(input())\nlst = []\n\nfor i in range(n):\n item = int(input())\n goods.append(item)\n\ngoods = sorted(lst, reverse=True)\ngoods[0] = goods[0] // 2\n\nprint(sum(goods))\n', 'd = int(input())\n\nprint("Christmas" + " Eve" * (abs(25-d))', 'd = int(input())\neve = 25 - d\n\nprint("Christmas" + " Eve" * eve)']
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s041185248', 's615422021', 's882905010', 's346805152']
[2940.0, 2940.0, 2940.0, 2940.0]
[18.0, 17.0, 17.0, 17.0]
[166, 168, 58, 65]
p03206
u309141201
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\nprint('christmas' + ' Eve' * (25 - d))", "d = int(input())\nprint('Christmas' + ' Eve' * (25 - d))"]
['Wrong Answer', 'Accepted']
['s155451221', 's177233506']
[2940.0, 2940.0]
[17.0, 17.0]
[55, 55]
p03206
u310233294
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nprint('Cristmas' + ' Eve' * (25 - D))\n", "D = int(input())\nprint('Christmas' + ' Eve' * (25 - D))\n"]
['Wrong Answer', 'Accepted']
['s356236997', 's695315179']
[2940.0, 2940.0]
[17.0, 17.0]
[55, 56]
p03206
u310381103
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["N=input()\nif N==25:\n print('Christmas')\nelif N==24:\n print('Christmas Eve')\nelif N==23:\n print('Christmas Eve Eve')\nelif N==22:\n print('Christmas Eve Eve Eve')", "N=input()\nif N==25:\n print('Chrismas')\nelif N==24:\n print('Chrismas Eve')\nelif N==23:\n print('Chrismas Eve Eve')\nelif N==22:\n print('Chrismas Eve Eve Eve')\n ", "N=int(input())\nif N==25:\n print('Christmas')\nelif N==24:\n print('Christmas Eve')\nelif N==23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s540415432', 's748453045', 's722463983']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[171, 176, 170]
p03206
u313452574
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\n\nif D = 25:\n print('Christmas')\n \nif D = 24:\n print('Christmas Eve')\n \nif D = 23:\n print('Christmas Eve Eve')\n \nif D = 22:\n print('Christmas Eve Eve Eve')", "D = int(input())\n\nif D == 25:\n print('Christmas')\n \nif D == 24:\n print('Christmas Eve')\n \nif D == 23:\n print('Christmas Eve Eve')\n \nif D == 22:\n print('Christmas Eve Eve Eve')\n"]
['Runtime Error', 'Accepted']
['s224529171', 's802582339']
[2940.0, 2940.0]
[17.0, 17.0]
[178, 183]
p03206
u318661636
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = input()\n\nif d == 25:\n print('Christmas')\nelif d == 24:\n print('Christmas Eve')\nelif d == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')", "d = int(input())\n\nif d == 25:\n print('Christmas')\nelif d == 24:\n print('Christmas Eve')\nelif d == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Accepted']
['s147406809', 's062557505']
[8948.0, 9052.0]
[31.0, 25.0]
[166, 171]
p03206
u319818856
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['def christmas_eve_eve_eve(D: int) -> str:\n ret = [\'christmas\'] + ([\'eve\'] * (25 - D))\n return \' \'.join(ret)\n\n\nif __name__ == "__main__":\n D = int(input())\n ans = christmas_eve_eve_eve(D)\n print(ans)\n', 'def christmas_eve_eve_eve(D: int) -> str:\n ret = [\'Christmas\'] + ([\'Eve\'] * (25 - D))\n return \' \'.join(ret)\n\n\nif __name__ == "__main__":\n D = int(input())\n ans = christmas_eve_eve_eve(D)\n print(ans)\n']
['Wrong Answer', 'Accepted']
['s507764790', 's532042892']
[2940.0, 2940.0]
[17.0, 18.0]
[214, 214]
p03206
u324207738
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['a = int(input())\nif a == 25:\n print("Chrismas")\nelif a == 24:\n print("Chrismas Eve")\nelif a == 23:\n print("Chrismas Eve Eve")\nelif a == 22:\n print("Chrismas Eve Eve Eve")\n\n', 'a = int(input())\nif a == 25:\n print("Christmas")\nelif a == 24:\n print("Christmas Eve")\nelif a == 23:\n print("Christmas Eve Eve")\nelif a == 22:\n print("Christmas Eve Eve Eve")\n\n']
['Wrong Answer', 'Accepted']
['s034306626', 's666560208']
[2940.0, 3064.0]
[18.0, 18.0]
[184, 188]
p03206
u324303263
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["a = input()\nif a == 25:\n print('Christmas')\nelif a == 24:\n print('Christmas Eve')\nelif a == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')\n", "a = int(input())\nif a == 25:\n print('Christmas')\nelif a == 24:\n print('Christmas Eve')\nelif a == 23:\n print('Christmas Eve Eve')\nelse:\n print('Christmas Eve Eve Eve')\n"]
['Wrong Answer', 'Accepted']
['s156458288', 's320797276']
[2940.0, 2940.0]
[18.0, 17.0]
[174, 179]
p03206
u325282913
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nc = 'Chrismas'\nfor i in range(25-D):\n c += ' Eve'\nprint(c)", "D = int(input())\nc = 'Christmas'\nfor _ in range(25-D):\n c += ' Eve'\nprint(c)"]
['Wrong Answer', 'Accepted']
['s604979195', 's626878460']
[2940.0, 2940.0]
[17.0, 18.0]
[78, 79]
p03206
u328131364
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N, X = map(int, input().split())\nbager = []\nbager.append("P")\n\nfor i in range(1, N+1):\n bagernow = "B" + bager[i-1] + "P" + bager[i-1] + "B"\n bager.append(bagernow)\n\nbagerN = str(bager[N])\n\nrunbager = bagerN[:(X)]\n\nAns = runbager.count("P")\n\nprint(Ans)', 'D = int(input())\n\nif D == 25:\n print("Christmas")\n\nelif D == 24:\n print("Christmas Eve")\n\nelif D == 23:\n print("Christmas Eve Eve")\n\nelif D == 22:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s391973336', 's059929109']
[3064.0, 2940.0]
[17.0, 17.0]
[258, 190]
p03206
u328755070
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["N = int(input())\n\nif N = 25:\n ans = 'Christmas'\n\nelif N = 24:\n ans = 'Christmas Eve'\n\nelif N = 23:\n ans = 'Christmas Eve Eve'\n\nelse:\n ans = 'Christmas Eve Eve Eve'\n\nprint(ans)", "N = int(input())\n\nif N == 25:\n ans = 'Christmas'\n\nelif N == 24:\n ans = 'Christmas Eve'\n\nelif N == 23:\n ans = 'Christmas Eve Eve'\n\nelse:\n ans = 'Christmas Eve Eve Eve'\n\nprint(ans)"]
['Runtime Error', 'Accepted']
['s145814051', 's935831589']
[2940.0, 3316.0]
[17.0, 21.0]
[187, 190]
p03206
u329036729
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\n\nif d == 25:\n print(d)\n print('Christmas')\nelif d == 24:\n print('Christmas Eve')\nelif d == 23:\n print('Christmas Eve Eve')\nelif d == 22:\n print('Christmas Eve Eve Eve')", "d = int(input())\n\nif d == 25:\n print('Christmas')\nelif d == 24:\n print('Christmas Eve')\nelif d == 23:\n print('Christmas Eve Eve')\nelif d == 22:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Accepted']
['s489767212', 's482544944']
[3316.0, 2940.0]
[20.0, 19.0]
[200, 187]
p03206
u329058683
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print("Christmas"+25-int(input())*" Eve")', 'N, K = map(int, input().split())\nh = [int(input()) for i in range(N)]\nh.sort()\nans=[]\nfor i in range(len(h)-K+1):\n b=h[K+1-i]-h[i]\n ans.append(b)\nprint(min(b))\n', 'print("Christmas"+" Eve"*(25-int(input())))']
['Runtime Error', 'Runtime Error', 'Accepted']
['s216349538', 's806405144', 's367366973']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[41, 162, 43]
p03206
u330314953
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\n\nif d == 25:\n pritn("Christmas")\nelif d == 24:\n print("hristmas Eve")\nelif d == 23:\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")\n', 'd = int(input())\n \nif d == 25:\n print("Christmas")\nelif d == 24:\n print("Christmas Eve")\nelif d == 23:\n print("Christmas Eve Eve")\nelse:\n print("Christmas Eve Eve Eve")']
['Runtime Error', 'Accepted']
['s110263891', 's555488545']
[2940.0, 2940.0]
[18.0, 17.0]
[179, 180]
p03206
u331036636
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['print("Christmas "+"Eve"*(25-int(input())))', 'print("Christmas"+" Eve"*(25-int(input())))']
['Wrong Answer', 'Accepted']
['s246370304', 's985151373']
[2940.0, 2940.0]
[17.0, 17.0]
[43, 43]
p03206
u332793228
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d=int(input())\nprint("Chrismas"if d==25 else "Chrismas Eve"if d==24 else"Chrismas Eve Eve" if d==23 else"Chrismas EveEveEve")', 'print("Chrismas"+" Eve"*(25-int(input())))', 'print("Christmas"+" Eve"*(25-int(input())))']
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s121650331', 's437951803', 's402617972']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[125, 42, 43]
p03206
u333139319
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['d = int(input())\n\n\nprint("Chirstmas"+" Eve" * (25 - d))', 'd = int(input())\n\n\nprint("Christmas"+" Eve" * (25 - d))\n']
['Wrong Answer', 'Accepted']
['s319945325', 's146546479']
[2940.0, 2940.0]
[17.0, 17.0]
[293, 294]
p03206
u333242657
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D = int(input())\nst = 'Chritsmas'\n\nfor i in range(25-D):\n st + ' Eve'\n\nprint(st)\n", "D = int(input())\nst = 'Chritsmas'\nww = 25-D\nans = st + (' Eve')* ww \nprint(ans)\n", "D = int(input())\nst = 'Chritsmas'\n\nfor i in range(25-D):\n st += ' Eve'\n\nprint(st)\n", "D = int(input())\nst = 'Chritsmas'\nww = 25-D\nprint(st+(' Eve'*WW))\n", "D = int(input())\nst = 'Christmas'\nww = 25-D\nans = st + (' Eve')* ww \nprint(ans)\n"]
['Wrong Answer', 'Wrong Answer', 'Wrong Answer', 'Runtime Error', 'Accepted']
['s112692547', 's253854691', 's815172475', 's968709104', 's652614321']
[2940.0, 2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 18.0, 17.0]
[82, 80, 83, 66, 80]
p03206
u333731247
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["D=int,input()\n\nif D==25:\n print('Christmas')\nelif D==24:\n print('Christmas Eve')\nelif D==23:\n print('Christmas Eve Eve')\nelif D==22:\n print('Christmas Eve Eve Eve')", "D=int,input()\n\nif D==25:\n print('Chrismas')\nelif D==24:\n print('Chrismas Eve')\nelif D==23:\n print('Chrismas Eve Eve')\nelif D==22:\n print('Chrismas Eve Eve Eve')", "D=input()\n\nif int(D)==25:\n print('Christmas')\nelif int(D)==24:\n print('Christmas Eve')\nelif int(D)==23:\n print('Christmas Eve Eve')\nelif int(D)==22:\n print('Christmas Eve Eve Eve')"]
['Wrong Answer', 'Wrong Answer', 'Accepted']
['s000479412', 's681400717', 's310237944']
[2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0]
[176, 172, 192]
p03206
u334712262
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["d = int(input())\na=['Christmas']\nfor i in range(25-d):\n a.append('Eve')\nprint(' '.join", "d = int(input())\na=['Christmas']\nfor i in ranage(25-d):\n a.append('Eve')\nprint(' '.join(a))", "d = int(input())\na=['Christmas']\nfor i in range(25-d):\n a.append('Eve')\nprint(' '.join())", "d = int(input())\na=['Christmas']\nfor i in range(25-d):\n a.append('Eve')\nprint(' '.join(a))\n"]
['Runtime Error', 'Runtime Error', 'Runtime Error', 'Accepted']
['s123923139', 's268443699', 's903969411', 's532627703']
[2940.0, 2940.0, 2940.0, 2940.0]
[17.0, 17.0, 17.0, 17.0]
[87, 96, 90, 92]
p03206
u336624604
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
["N = int(input())\n\nA = 'Chrismas'\nB = 'Eve'\nif N == 25:\n print(A)\nelif N == 24:\n print(A+' '+B)\nelif N == 23:\n print(A+' '+B+' '+B)\nelif N == 22:\n print(A+' '+B+' '+B+' '+B)", "N = int(input())\n\nA = 'Christmas'\nB = 'Eve'\nif N == 25:\n print(A)\nelif N == 24:\n print(A+' '+B)\nelif N == 23:\n print(A+' '+B+' '+B)\nelif N == 22:\n print(A+' '+B+' '+B+' '+B)"]
['Wrong Answer', 'Accepted']
['s652970263', 's977847728']
[2940.0, 3060.0]
[17.0, 17.0]
[184, 185]
p03206
u336721073
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['D = int(input())\nn_eve = 25 - D\ntext = "Christmas"\nfor _ in n_eve:\n text += " Eve"\nprint(text)', 'D = int(input())\nn_eve = 25 - D\ntext = "Christmas"\nfor _ in range(n_eve):\n text += " Eve"\nprint(text)']
['Runtime Error', 'Accepted']
['s277127530', 's438275474']
[2940.0, 2940.0]
[17.0, 17.0]
[97, 104]
p03206
u337626942
2,000
1,048,576
In some other world, today is December D-th. Write a program that prints `Christmas` if D = 25, `Christmas Eve` if D = 24, `Christmas Eve Eve` if D = 23 and `Christmas Eve Eve Eve` if D = 22.
['N = int(input())\nlist = [int(input())for _ in range(N)]\nprint(round(sum(list) - max(list)/2))', 'D = int(input())\nif D == 25:\n print("Christmas")\nelif D == 24:\n print("Christmas Eve")\nelif D == 23:\n print("Christmas Eve Eve")\nelif D == 22:\n print("Christmas Eve Eve Eve")\n ']
['Runtime Error', 'Accepted']
['s623596669', 's649498601']
[2940.0, 2940.0]
[17.0, 17.0]
[93, 181]