s_id string | p_id string | u_id string | date string | language string | original_language string | filename_ext string | status string | cpu_time string | memory string | code_size string | code string | error string | stdout string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s696173132 | p04048 | u346194435 | 1555974281 | Python | Python (3.4.3) | py | Runtime Error | 2103 | 2940 | 166 | N,X = map(int, input().split())
if N/2 == X:
print(X*3)
else:
# 上側
l = X + N - X
while X > 0:
l += X*2
X -= 1
l += 1
print(l) | Traceback (most recent call last):
File "/tmp/tmpj_3rlbrj/tmp02uvvnin.py", line 1, in <module>
N,X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s934838862 | p04048 | u885899351 | 1555959779 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 62 | n,m=map(int,input().split())
print(n//2*3if n//2=m else n*3-3) | /tmp/tmpribd4qfp/tmpw0sirj7t.py:2: SyntaxWarning: invalid decimal literal
print(n//2*3if n//2=m else n*3-3)
File "/tmp/tmpribd4qfp/tmpw0sirj7t.py", line 2
print(n//2*3if n//2=m else n*3-3)
^^^^^^^^^^^^^
SyntaxError: expected 'else' after 'if' expression
| |
s717233358 | p04048 | u693716675 | 1555103471 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3060 | 296 | n, x = [int(i) for i in input().split()]
cnt=0
short = n%x
long = x
cnt += x*(2*(n//x)-1) + (n-x)
while(1):
c = long % short
a = long //short
if c==0:
break
else:
cnt += short * 2 * a
long = short
short = c
cnt += short * 2 * a -1
print(cnt)
| Traceback (most recent call last):
File "/tmp/tmp1wekykxi/tmppgddlb8h.py", line 1, in <module>
n, x = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s319909280 | p04048 | u684695949 | 1553825473 | Python | Python (3.4.3) | py | Runtime Error | 73 | 3980 | 165 | def f(a,b):
if a==b:
ret = a
elif a < b:
ret = 2*a + f(a,b-a)
else:
ret = 2*b + f(a-b,b)
return ret
N,X = map(int,input().split(" "))
print(N+f(N-X,X))
| Traceback (most recent call last):
File "/tmp/tmp5ex1miw4/tmpp3zg2dpc.py", line 11, in <module>
N,X = map(int,input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s744545686 | p04048 | u684695949 | 1553741162 | Python | Python (3.4.3) | py | Runtime Error | 72 | 3976 | 157 | def f(a,b):
if a==b:
return 2*a
elif a < b:
return 2*a + f(a,b-a)
else:
return 2*b + f(a-b,b)
N,X = map(int,input().split(" "))
print(N+f(N-X,X)) | Traceback (most recent call last):
File "/tmp/tmp12xdvh9s/tmp__dfe02o.py", line 10, in <module>
N,X = map(int,input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s527203596 | p04048 | u684695949 | 1553741022 | Python | Python (3.4.3) | py | Runtime Error | 78 | 3940 | 267 | def f(a,b):
return 2*a + f_fast(a,b-a)
def f_fast(a,b):
if a==b:
return a+b
elif a < b:
if b%a == 0:
return f(a,b)
else:
d = b//a
return 2*a*d + f_fast(a,b%a)
else:
return f_fast(b,a)
N,X = map(int,input().split(" "))
print(N+f_fast(N-X,X)) | Traceback (most recent call last):
File "/tmp/tmp2vooneva/tmpi3t5fdoa.py", line 19, in <module>
N,X = map(int,input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s861657137 | p04048 | u684695949 | 1553740526 | Python | Python (3.4.3) | py | Runtime Error | 74 | 4212 | 169 | def f(a,b):
print(a,b)
if a==b:
return 2*a
elif a < b:
return 2*a + f(a,b-a)
else:
return 2*b + f(a-b,b)
N,X = map(int,input().split(" "))
print(N+f(N-X,X)) | Traceback (most recent call last):
File "/tmp/tmpxxjttq2c/tmpu4jw8eiu.py", line 11, in <module>
N,X = map(int,input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s158402728 | p04048 | u697713131 | 1552764602 | Python | PyPy3 (2.4.0) | py | Runtime Error | 304 | 48368 | 189 | n,x = map(int,input().split())
def f(a,b):
if a == b:
return a
elif a < b:
return 2*a + f(a,b-a)
else:
return 2*b + f(b,a-b)
print(n+f(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmpupng1mlz/tmpb8e30g1e.py", line 1, in <module>
n,x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s368961987 | p04048 | u697713131 | 1552764539 | Python | Python (3.4.3) | py | Runtime Error | 73 | 3980 | 189 | n,x = map(int,input().split())
def f(a,b):
if a == b:
return a
elif a < b:
return 2*a + f(a,b-a)
else:
return 2*b + f(b,a-b)
print(n+f(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmptghmk64m/tmpfscgsig4.py", line 1, in <module>
n,x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s384630814 | p04048 | u697713131 | 1552763546 | Python | Python (3.4.3) | py | Runtime Error | 72 | 3980 | 189 | n,x = map(int,input().split())
def f(a,b):
if a == b:
return a
elif a < b:
return 2*a + f(a,b-a)
else:
return 2*b + f(a-b,b)
print(n+f(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmpd7hj1fur/tmpz13l08sz.py", line 1, in <module>
n,x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s175677841 | p04048 | u761989513 | 1551135753 | Python | Python (3.4.3) | py | Runtime Error | 73 | 3984 | 347 | def solve(s, a, b):
if a % b == 0:
return s + ((a // b) * 2 - 1) * b
if b % a == 0:
return s + ((b // a) * 2 - 1) * a
if a == b:
return s + a
elif a > b:
return solve(s + b * 2, a - b, b)
else:
return solve(s + a * 2, a, b - a)
n, x = map(int, input().split()... | Traceback (most recent call last):
File "/tmp/tmpt8dnr1te/tmpsvkf6inm.py", line 13, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s288708942 | p04048 | u761989513 | 1551135053 | Python | Python (3.4.3) | py | Runtime Error | 74 | 3984 | 313 | def solve(s, a, b):
if a == 1:
return s + b * 2 - 1
if b == 1:
return s + a * 2 - 1
if a == b:
return s + a
elif a > b:
return solve(s + b * 2, a - b, b)
else:
return solve(s + a * 2, a, b - a)
n, x = map(int, input().split())
print(solve(n, n - x, x)) | Traceback (most recent call last):
File "/tmp/tmpvstfgm9w/tmp98dcsm8i.py", line 13, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s798109564 | p04048 | u761989513 | 1551134507 | Python | Python (3.4.3) | py | Runtime Error | 1347 | 721644 | 275 | import sys
sys.setrecursionlimit(100000000)
def solve(s, a, b):
if a == b:
return s + a
elif a > b:
return solve(s + b * 2, a - b, b)
else:
return solve(s + a * 2, a, b - a)
n, x = map(int, input().split())
print(solve(0, n - x, x) + n) | Traceback (most recent call last):
File "/tmp/tmpyo7v9ckd/tmpwi46urye.py", line 13, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s144935227 | p04048 | u761989513 | 1551134354 | Python | Python (3.4.3) | py | Runtime Error | 73 | 3980 | 230 | def solve(s, a, b):
if a == b:
return s + a
elif a > b:
return solve(s + b * 2, a - b, b)
else:
return solve(s + a * 2, a, b - a)
n, x = map(int, input().split())
print(solve(0, n - x, x) + n) | Traceback (most recent call last):
File "/tmp/tmpusqgge2s/tmph21y6our.py", line 10, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s834018018 | p04048 | u016567570 | 1550032052 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 87 | N, X = map(int, input().split())
l = N//X
q = N%X
print(N + 2*(l-1)*X + q*((X//q) + 1)) | Traceback (most recent call last):
File "/tmp/tmpcpp1aeck/tmpwtxidpwd.py", line 1, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s294232485 | p04048 | u016567570 | 1550030954 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 85 | N, X = map(int, input().split())
l = N//X
q = N%X
print(N + 2*(l-1)*X + q*(X//q + 1)) | Traceback (most recent call last):
File "/tmp/tmpncw7hzeg/tmphycynhbt.py", line 1, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s345405098 | p04048 | u016567570 | 1550030856 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 106 | #-*-coding: utf-8-*-
N, X = map(int, input().split())
l = N//X
q = N%X
print(N + 2*(l-1)*X + q*(X//q + 1)) | Traceback (most recent call last):
File "/tmp/tmp79eh_e6k/tmpj55s2s50.py", line 2, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s737283365 | p04048 | u016567570 | 1550030293 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 109 | #-*-coding: utf-8-*-
N, X = map(int, input().split())
print(N + 2*((N//X)-1)*X + (N%X) * (X//(X//(N%X)) + 1)) | Traceback (most recent call last):
File "/tmp/tmpd3j591uq/tmp26yh2n8n.py", line 2, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s099015926 | p04048 | u016567570 | 1550030228 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 110 | #-*-coding: utf-8-*-
N, X = map(int, input().split())
print(N + 2*((N//X)-1)*X + (N%X) * (X//(X//(N%X)) + 1)) | Traceback (most recent call last):
File "/tmp/tmpan39uf6e/tmpd5dp1qhu.py", line 2, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s432698194 | p04048 | u016567570 | 1550029907 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 106 | #-*-coding: utf-8-*-
N, X = map(int, input().split())
print(N + 2*((N//X)-1)*X + (N%X) * (X//(X//q) + 1)) | Traceback (most recent call last):
File "/tmp/tmpcwrcmsxd/tmpi0uynydo.py", line 2, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s936674618 | p04048 | u902468164 | 1549753953 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 149 | import fraction
li = [int(i) for i in input().split(" ")]
res = (li[0] // fraction.gcd(li[0], li[1]) -1) * 3 * fraction.gcd(li[0], li[1])
print(res) | Traceback (most recent call last):
File "/tmp/tmpv9fnd7nd/tmp7fgva3_g.py", line 1, in <module>
import fraction
ModuleNotFoundError: No module named 'fraction'
| |
s782042100 | p04048 | u902468164 | 1549753851 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3060 | 138 | import math
li = [int(i) for i in input().split(" ")]
res = (li[0] // math.gcd(li[0], li[1]) -1) * 3 * math.gcd(li[0], li[1])
print(res) | Traceback (most recent call last):
File "/tmp/tmpzbuccfj8/tmpgpxt7gti.py", line 3, in <module>
li = [int(i) for i in input().split(" ")]
^^^^^^^
EOFError: EOF when reading a line
| |
s091075627 | p04048 | u740284863 | 1549594499 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 76 | from fractions
n,x=map(int,input().split())
print(3*(n-fractions.gcd(n,x)))
| File "/tmp/tmpttzgl01t/tmpvjfmacml.py", line 1
from fractions
^
SyntaxError: invalid syntax
| |
s263588101 | p04048 | u740284863 | 1549594471 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3064 | 68 | import math
n,x=map(int,input().split())
print(3*(n-math.gcd(n,x)))
| Traceback (most recent call last):
File "/tmp/tmpp1y8nv82/tmpdtn0187e.py", line 2, in <module>
n,x=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s025454084 | p04048 | u740284863 | 1549594337 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 67 | import math
n,x=map(int,input().split())
print(4*(n-math.gcd(n,x))) | Traceback (most recent call last):
File "/tmp/tmpstvq_88q/tmpunj83xcs.py", line 2, in <module>
n,x=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s060716523 | p04048 | u740284863 | 1549594259 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 63 | import math
n,x=map(int,input().split())
print(4*(n-gcd(n,x)))
| Traceback (most recent call last):
File "/tmp/tmpc_1xrhtk/tmp05aa4mnf.py", line 2, in <module>
n,x=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s571418060 | p04048 | u879870653 | 1549582575 | Python | Python (3.4.3) | py | Runtime Error | 1315 | 715252 | 238 | import sys
sys.setrecursionlimit(10**9)
N,X = map(int,input().split())
def f(a,b) :
if a < b :
return 2*a + f(a,b-a)
elif a > b :
return 2*b + f(b,a-b)
else :
return a
ans = N + f(X,N-X)
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpyc7wgxmc/tmpzpc4azoc.py", line 4, in <module>
N,X = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s883872348 | p04048 | u879870653 | 1549581937 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 259 | import sys
sys.setrecursionlimit(10**12+1)
N,X = map(int,input().split())
def f(a,b) :
if a < b :
return 2*a + f(a,b-a)
elif a > b :
a,b = b,a
return 2*a + f(a,b-a)
else :
return a
ans = N + f(X,N-X)
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpgnv_15af/tmpjj6iendu.py", line 2, in <module>
sys.setrecursionlimit(10**12+1)
OverflowError: Python int too large to convert to C int
| |
s493323134 | p04048 | u879870653 | 1549581713 | Python | Python (3.4.3) | py | Runtime Error | 1297 | 715380 | 256 | import sys
sys.setrecursionlimit(10**9)
N,X = map(int,input().split())
def f(a,b) :
if a < b :
return 2*a + f(a,b-a)
elif a > b :
a,b = b,a
return 2*a + f(a,b-a)
else :
return a
ans = N + f(X,N-X)
print(ans)
| Traceback (most recent call last):
File "/tmp/tmp67f1fr4v/tmp17rktuxf.py", line 4, in <module>
N,X = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s422223228 | p04048 | u879870653 | 1549581646 | Python | Python (3.4.3) | py | Runtime Error | 77 | 3972 | 215 | N,X = map(int,input().split())
def f(a,b) :
if a < b :
return 2*a + f(a,b-a)
elif a > b :
a,b = b,a
return 2*a + f(a,b-a)
else :
return a
ans = N + f(X,N-X)
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpg4y2r3qe/tmpprgz49ey.py", line 1, in <module>
N,X = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s588470967 | p04048 | u879870653 | 1549581072 | Python | Python (3.4.3) | py | Runtime Error | 75 | 3976 | 198 | N,X = map(int,input().split())
def f(a,b) :
if a < b :
return 2*a + f(a,b-a)
elif b == 0 :
return 0
else :
return ((a//b)*2-1)*b
ans = N + f(X,N-X)
print(ans)
| Traceback (most recent call last):
File "/tmp/tmpca4spce0/tmpaq3h_swm.py", line 1, in <module>
N,X = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s797127141 | p04048 | u631277801 | 1549540394 | Python | Python (3.4.3) | py | Runtime Error | 1944 | 715380 | 634 | import sys
stdin = sys.stdin
sys.setrecursionlimit(10**8)
def li(): return map(int, stdin.readline().split())
def li_(): return map(lambda x: int(x)-1, stdin.readline().split())
def lf(): return map(float, stdin.readline().split())
def ls(): return stdin.readline().split()
def ns(): return stdin.readline().rstrip(... | Traceback (most recent call last):
File "/tmp/tmpdm98s_1w/tmp09lszn0p.py", line 24, in <module>
n,x = li()
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s844708469 | p04048 | u631277801 | 1549540351 | Python | Python (3.4.3) | py | Runtime Error | 334 | 98548 | 634 | import sys
stdin = sys.stdin
sys.setrecursionlimit(10**5)
def li(): return map(int, stdin.readline().split())
def li_(): return map(lambda x: int(x)-1, stdin.readline().split())
def lf(): return map(float, stdin.readline().split())
def ls(): return stdin.readline().split()
def ns(): return stdin.readline().rstrip(... | Traceback (most recent call last):
File "/tmp/tmp9mnlq74g/tmpag15t8qp.py", line 24, in <module>
n,x = li()
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s265781339 | p04048 | u904804404 | 1549251109 | Python | Python (3.4.3) | py | Runtime Error | 224 | 89812 | 231 | def tri_len(x,y):
if x== y:
return x
elif x < y:
return tri_len(y-x,x)+2*x
else:
return tri_len(x-y,y)+2*y
import sys
sys.setrecursionlimit(100000)
n,x= list(map(int,input().split(" ")))
print( n+tri_len(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmpov64bghl/tmpkja83cby.py", line 11, in <module>
n,x= list(map(int,input().split(" ")))
^^^^^^^
EOFError: EOF when reading a line
| |
s352575624 | p04048 | u904804404 | 1549251035 | Python | Python (3.4.3) | py | Runtime Error | 99 | 11704 | 230 | def tri_len(x,y):
if x== y:
return x
elif x < y:
return tri_len(y-x,x)+2*x
else:
return tri_len(x-y,y)+2*y
import sys
sys.setrecursionlimit(10000)
n,x= list(map(int,input().split(" ")))
print( n+tri_len(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmpgraeuir3/tmp18ukx2yi.py", line 11, in <module>
n,x= list(map(int,input().split(" ")))
^^^^^^^
EOFError: EOF when reading a line
| |
s589582202 | p04048 | u904804404 | 1549250939 | Python | Python (3.4.3) | py | Runtime Error | 73 | 3896 | 191 | def tri_len(x,y):
if x== y:
return x
elif x < y:
return tri_len(y-x,x)+2*x
else:
return tri_len(x-y,y)+2*y
n,x= list(map(int,input().split(" ")))
print( n+tri_len(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmph_n242sn/tmpion5by2g.py", line 10, in <module>
n,x= list(map(int,input().split(" ")))
^^^^^^^
EOFError: EOF when reading a line
| |
s882265313 | p04048 | u588633699 | 1549250938 | Python | Python (3.4.3) | py | Runtime Error | 19 | 2940 | 139 | N = int(input())
L = list(map(int, input().split()))
L.sort()
x = 0
for i in range(0, 2*N, 2):
print(L[i])
x += L[i]
print(x) | Traceback (most recent call last):
File "/tmp/tmpi1zb31lq/tmplq76astq.py", line 1, in <module>
N = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s623476061 | p04048 | u416522077 | 1548645359 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 459 | import sys
N = int(sys.argv[1])
X = int(sys.argv[2])
rect = [ X, N-X ]
rect_temp = rect
length = 0
while True :
if rect_temp[0] < rect_temp[1]:
length += rect_temp[0]*3
rect_temp = [ rect_temp[0], rect_temp[1]-rect_temp[0] ]
elif rect_temp[0] > rect_temp[1]:
length += rect_temp[1]... | Traceback (most recent call last):
File "/tmp/tmpc3xmnlfy/tmprjfrvbn4.py", line 3, in <module>
N = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s428704902 | p04048 | u416522077 | 1548644410 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 459 | import sys
N = int(sys.argv[1])
X = int(sys.argv[2])
rect = [ X, N-X ]
rect_temp = rect
length = 0
while True :
if rect_temp[0] < rect_temp[1]:
length += rect_temp[0]*3
rect_temp = [ rect_temp[0], rect_temp[1]-rect_temp[0] ]
elif rect_temp[0] > rect_temp[1]:
length += rect_temp[1]... | Traceback (most recent call last):
File "/tmp/tmpvjt9k9ie/tmp5zi4j6pt.py", line 3, in <module>
N = int(sys.argv[1])
~~~~~~~~^^^
IndexError: list index out of range
| |
s891845339 | p04048 | u690536347 | 1547679722 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 170 | import sys
sys.setrecursionlimit(10**15)
def f(a,b):
if a==b:return a
if not a<b:a,b=b,a
return f(a,b-a)+2*a
N,X=map(int,input().split())
print(f(X,N-X)+N)
| Traceback (most recent call last):
File "/tmp/tmp5urepd_5/tmpv4tucfne.py", line 2, in <module>
sys.setrecursionlimit(10**15)
OverflowError: Python int too large to convert to C int
| |
s286661045 | p04048 | u690536347 | 1547679677 | Python | Python (3.4.3) | py | Runtime Error | 1281 | 689908 | 168 | import sys
sys.setrecursionlimit(10**7)
def f(a,b):
if a==b:return a
if not a<b:a,b=b,a
return f(a,b-a)+2*a
N,X=map(int,input().split())
print(f(X,N-X)+N) | Traceback (most recent call last):
File "/tmp/tmp0y_cjoh7/tmp_08evkzn.py", line 9, in <module>
N,X=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s393774304 | p04048 | u603234915 | 1547181037 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 162 | N, X = map(int, input())
if X == N//2:
print(N//2 * 3)
elif N % X == 0:
a = max(N-X, X)
b = min(N-X, X)
print(a + a // b * 2)
else:
print(0)
| Traceback (most recent call last):
File "/tmp/tmpa21f3w7t/tmprzumxbrs.py", line 1, in <module>
N, X = map(int, input())
^^^^^^^
EOFError: EOF when reading a line
| |
s743460939 | p04048 | u631277801 | 1542292389 | Python | Python (3.4.3) | py | Runtime Error | 291 | 98532 | 636 | import sys
stdin = sys.stdin
sys.setrecursionlimit(10**5)
def li(): return map(int, stdin.readline().split())
def li_(): return map(lambda x: int(x)-1, stdin.readline().split())
def lf(): return map(float, stdin.readline().split())
def ls(): return stdin.readline().split()
def ns(): return stdin.readline().rstrip()
d... | Traceback (most recent call last):
File "/tmp/tmpyydxxo_x/tmpp92hj9sy.py", line 24, in <module>
n,x = li()
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s231663088 | p04048 | u631277801 | 1542292293 | Python | Python (3.4.3) | py | Runtime Error | 327 | 100116 | 599 | import sys
stdin = sys.stdin
sys.setrecursionlimit(10**5)
def li(): return map(int, stdin.readline().split())
def li_(): return map(lambda x: int(x)-1, stdin.readline().split())
def lf(): return map(float, stdin.readline().split())
def ls(): return stdin.readline().split()
def ns(): return stdin.readline().rstrip()
d... | Traceback (most recent call last):
File "/tmp/tmpd6508r1_/tmpgc2yv2of.py", line 21, in <module>
n,x = li()
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s681918282 | p04048 | u368780724 | 1542138871 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3060 | 98 | N, X = [int(i) for i in input().split()]
import math
gcd = math.gcd(N, X)
print(gcd*(N//gcd-1)*3) | Traceback (most recent call last):
File "/tmp/tmpoh988uh6/tmpnsmjhy43.py", line 1, in <module>
N, X = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s811676658 | p04048 | u328207927 | 1541776657 | Python | Python (3.4.3) | py | Runtime Error | 20 | 2940 | 75 | import math
n,x=map(int,input().strip().split())
print(3*(n-math.gcd(n,x))) | Traceback (most recent call last):
File "/tmp/tmpui04nnac/tmp0di9t4c6.py", line 2, in <module>
n,x=map(int,input().strip().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s241157045 | p04048 | u328207927 | 1541776278 | Python | Python (3.4.3) | py | Runtime Error | 2103 | 3060 | 189 | n,x=map(int,input().strip().split())
z=n-2*x
y=n-x
an=0
an+=3*x+y
an+=z*(x//z+1)
#x=x//z
#z-=2*x
while not z<x:
an+=z*(x//z+1)
if not x%z==0:
an+=1
z-=2*x
print(an) | Traceback (most recent call last):
File "/tmp/tmpx9djt0ha/tmp38cvndj6.py", line 1, in <module>
n,x=map(int,input().strip().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s772768992 | p04048 | u393558821 | 1541479806 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 61 | #Include <bits/stdc++.h>
using namespace std;
int main(){
} | File "/tmp/tmpr9iikyq3/tmp806ucsb6.py", line 2
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s873049898 | p04048 | u533885955 | 1540082829 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 54 | a,b = map(int,input().split())
s = a/b
print(3b*(s-1)) | File "/tmp/tmp5bzt8zhm/tmp3ed9zmb4.py", line 3
print(3b*(s-1))
^
SyntaxError: invalid decimal literal
| |
s764156874 | p04048 | u619819312 | 1538927545 | Python | Python (3.4.3) | py | Runtime Error | 17 | 3064 | 75 | from fractions import gcd
n,m=map(int,input().split())
print(3*(n-gcd(n,m)) | File "/tmp/tmp552ad69f/tmp50hjqsvl.py", line 3
print(3*(n-gcd(n,m))
^
SyntaxError: '(' was never closed
| |
s373246359 | p04048 | u667024514 | 1538852398 | Python | Python (3.4.3) | py | Runtime Error | 40 | 5304 | 82 | n,x = map(int,input().split())
import fractions
print+(3 * (n-fractions.gcd(n,x))) | Traceback (most recent call last):
File "/tmp/tmp739a3c2m/tmp3gcrg7v5.py", line 1, in <module>
n,x = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s255311561 | p04048 | u393481615 | 1535875608 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 85 | import math
[N, X] = list(map(int, input().split()))
print(int(3*(N-math.gcd(N,X))))
| Traceback (most recent call last):
File "/tmp/tmpshr5_6an/tmpndp4cpzn.py", line 2, in <module>
[N, X] = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s048338925 | p04048 | u334712262 | 1534700985 | Python | Python (3.4.3) | py | Runtime Error | 42 | 5688 | 1458 | # -*- coding: utf-8 -*-
import bisect
import heapq
import math
import random
import sys
from collections import Counter, defaultdict, deque
from decimal import ROUND_CEILING, ROUND_HALF_UP, Decimal
from functools import lru_cache, reduce
from itertools import combinations, combinations_with_replacement, product, permut... | Traceback (most recent call last):
File "/tmp/tmpxtg5lytt/tmpfns4o4_f.py", line 88, in <module>
main()
File "/tmp/tmpxtg5lytt/tmpfns4o4_f.py", line 83, in main
N, X = read_int_n()
^^^^^^^^^^^^
File "/tmp/tmpxtg5lytt/tmpfns4o4_f.py", line 21, in read_int_n
return list(map(int, input().split(... | |
s154799118 | p04048 | u334712262 | 1534700839 | Python | PyPy3 (2.4.0) | py | Runtime Error | 295 | 62700 | 1421 | # -*- coding: utf-8 -*-
import bisect
import heapq
import math
import random
import sys
from collections import Counter, defaultdict, deque
from decimal import ROUND_CEILING, ROUND_HALF_UP, Decimal
from functools import lru_cache, reduce
from itertools import combinations, combinations_with_replacement, product, permut... | Traceback (most recent call last):
File "/tmp/tmpjzv6hqok/tmpw1o5a2bw.py", line 86, in <module>
main()
File "/tmp/tmpjzv6hqok/tmpw1o5a2bw.py", line 81, in main
N, X = read_int_n()
^^^^^^^^^^^^
File "/tmp/tmpjzv6hqok/tmpw1o5a2bw.py", line 21, in read_int_n
return list(map(int, input().split(... | |
s887363089 | p04048 | u745087332 | 1531529575 | Python | Python (3.4.3) | py | Runtime Error | 76 | 3948 | 386 | n, x = map(int, input().split())
def func(a, b):
if a < b:
if b%a == 0:
return (b//a*2 - 1)*a
else:
return 2*a + func(a, b-a)
elif a > b:
if a%b == 0:
return (a//b*2 - 1)*b
else:
return 2*b + func(a-b, b)
else:
return a... | Traceback (most recent call last):
File "/tmp/tmpsb680uot/tmp5naaapi0.py", line 1, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s430977308 | p04048 | u745087332 | 1531529110 | Python | Python (3.4.3) | py | Runtime Error | 75 | 3948 | 307 | n, x = map(int, input().split())
def func(a, b):
if a < b:
if b%a == 0:
return b//a*2 - 1
else:
return 2*a + func(a, b-a)
else:
if a%b == 0:
return a//b*2 - 1
else:
return 2*b + func(a-b, b)
print(x+(n-x)+func(x,n-x)) | Traceback (most recent call last):
File "/tmp/tmp_0fiewy6/tmpgc_d4n2j.py", line 1, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s836690284 | p04048 | u745087332 | 1531528879 | Python | Python (3.4.3) | py | Runtime Error | 74 | 3952 | 355 | n, x = map(int, input().split())
def func(a, b):
if a < b:
if b%a == 0:
return b/a*2 - 1
else:
return 2*a + func(a, b-a)
else:
if a%b == 0:
return a/b*2 - 1
else:
return 2*b + func(a-b, b)
if x == n/2:
print(3*x)
e... | Traceback (most recent call last):
File "/tmp/tmpre6u6ksc/tmp1i9ywx6o.py", line 1, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s111435103 | p04048 | u278479217 | 1528601400 | Python | PyPy3 (2.4.0) | py | Runtime Error | 369 | 49260 | 399 | #!/usr/bin/env python3
import sys
def debug(*args): print(*args, file=sys.stderr)
def exit(): sys.exit(0)
N, X = map(int, input().split())
def f(x, n):
debug(x,n)
# if 2*x == n:
# return 3*x
if x % (n-x) == 0:
return 3*x
if 2*x < n:
return f(x, n-x) + 3*x# n + x
a = x//(n-x... | Traceback (most recent call last):
File "/tmp/tmp8lh0q6ad/tmpsbu18doa.py", line 6, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s256155392 | p04048 | u315078622 | 1528248306 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 81 | from math import gcd
N, X = map(int, input().split())
print(3 * (N - gcd(N, X)))
| Traceback (most recent call last):
File "/tmp/tmpgdhq2c2g/tmp9baddrbo.py", line 2, in <module>
N, X = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s005205942 | p04048 | u304608668 | 1526079859 | Python | Python (3.4.3) | py | Runtime Error | 80 | 3980 | 483 | """
a
+ -------
| b-a / / f(a, b) = 2*a + f(a, b-a)
| / / answer = N + f(X, N-X)
b ------- COMD(a < b)
| / \ /
| / \ /
| / \/
+ -------
"""
#--- define function ---#
def calc(a, b):
if a > b:
a, b = b, a
if a == b:
... | Traceback (most recent call last):
File "/tmp/tmpzqykzoi0/tmp1vmm5v4n.py", line 25, in <module>
N, X = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s002545282 | p04048 | u562016607 | 1523486598 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 120 | def gcd(a,b):
if a%b==0:
return b
else:
return gcd(b,a%b)
N,X=map(int,input().split())
print(3*(N-gcd(N,X))
| File "/tmp/tmp9uhp7jym/tmpt4alev45.py", line 7
print(3*(N-gcd(N,X))
^
SyntaxError: '(' was never closed
| |
s352506225 | p04048 | u562016607 | 1523486579 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 120 | def gcd(a,b):
if a%b==0:
return b
else:
return gcd(b,a%b):
N,X=map(int,input().split())
print(3*(N-gcd(N,X)) | File "/tmp/tmptpcpopbh/tmpnicw61lg.py", line 5
return gcd(b,a%b):
^
SyntaxError: invalid syntax
| |
s580800768 | p04048 | u050024609 | 1519882185 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 79 | from math import gcd
N, X=map(int, input().split())
print(3*(N - gcd(N, X)))
| Traceback (most recent call last):
File "/tmp/tmpm1vtdr8s/tmp78glsmm9.py", line 3, in <module>
N, X=map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s144543736 | p04048 | u830390742 | 1516806509 | Python | Python (2.7.6) | py | Runtime Error | 24 | 3508 | 216 | def calc(a, b):
if a <= 0 or b <= 0:
return 0
if a == b:
return a
a, b = min(a, b), max(a, b)
return calc(b-a, a) + 2 * a
N, X = map(int, raw_input().split())
print calc(X, N-X) + N
| File "/tmp/tmpnj6qvx15/tmpcfv6bm2o.py", line 10
print calc(X, N-X) + N
^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s510904734 | p04048 | u325562015 | 1505098205 | Python | Python (3.4.3) | py | Runtime Error | 75 | 3960 | 425 | '''def f(a, b):
if a * b == 0:
return 0
res = f(min(a, b), max(a, b) % min(a, b)) + 2 * min(a, b) * (max(a,b)//min(a, b))
if(max(a, b) % min(a, b) == 0):
res -= 1
return res'''
def f(a, b):
if(a - b == 0):
return a
if(a * b == 0):
return 0
return 2 * min(a, b)... | Traceback (most recent call last):
File "/tmp/tmpev92img7/tmp64kxn14i.py", line 15, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s002373403 | p04048 | u325562015 | 1505098113 | Python | Python (3.4.3) | py | Runtime Error | 75 | 3964 | 448 | '''def f(a, b):
if a * b == 0:
return 0
res = f(min(a, b), max(a, b) % min(a, b)) + 2 * min(a, b) * (max(a,b)//min(a, b))
if(max(a, b) % min(a, b) == 0):
res -= 1
return res'''
def f(a, b):
minn = min(a, b)
maxx = max(a, b)
if(a - b == 0):
return a
if(a * b == 0):... | Traceback (most recent call last):
File "/tmp/tmpfazrq74z/tmpjgh37jpu.py", line 17, in <module>
n, x = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s949167797 | p04048 | u998273299 | 1503676015 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2568 | 171 | #! /bin/python
# coding:utf-8
import sys
def gcd(N, X):
while X:
N, X = X, N % X
return N
N = int(sys.argv[1])
X = int(sys.argv[2])
print 3 * (N - (gcd(N, X)))
| File "/tmp/tmporlk1k93/tmp5kdqudci.py", line 14
print 3 * (N - (gcd(N, X)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s131059688 | p04048 | u998273299 | 1503675661 | Python | Python (2.7.6) | py | Runtime Error | 14 | 2820 | 152 | #! /bin/python
# coding:utf-8
def gcd(N, X):
while X:
N, X = X, N % X
return N
N, X = map(int, raw_input().split())
print = 3 * (N - (gcd(N, X)))
| Traceback (most recent call last):
File "/tmp/tmp1zbo0eb3/tmpk1dim1ka.py", line 9, in <module>
N, X = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s373823028 | p04048 | u884847580 | 1500467252 | Python | Python (2.7.6) | py | Runtime Error | 11 | 2568 | 302 | L = map(int, raw_input().split())
n = L[0]
x = L[1]
res = n
a = x
b = n-x
flag = True
while flag :
if a > b:
q = a // b
a -= q*b
res += 2*q*b
elif b > a:
q = b // a
b -= q*a
res += 2*a*q
else:
res += a
flag = False
print(res) | Traceback (most recent call last):
File "/tmp/tmpny_f6stn/tmpboz4iz30.py", line 1, in <module>
L = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s532964684 | p04048 | u375536288 | 1499652887 | Python | Python (2.7.6) | py | Runtime Error | 10 | 2568 | 180 | def gcd(a,b):
if b == 0:
return a
return gcd(b,a%b)
N = int(raw_input())
k = int(raw_input())
#A = map(int, raw_input().split())
ans = gcd(N,k)
print 3*(N - ans) | File "/tmp/tmp_dy9aly6/tmpim__gp5o.py", line 12
print 3*(N - ans)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s544302779 | p04048 | u986399983 | 1490150866 | Python | Python (3.4.3) | py | Runtime Error | 17 | 2940 | 46 | N, X = int(input()), int(input())
print(X * 6) | Traceback (most recent call last):
File "/tmp/tmpq7elnul9/tmp69dna86m.py", line 1, in <module>
N, X = int(input()), int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s183172898 | p04048 | u579875569 | 1469306268 | Python | Python (3.4.3) | py | Runtime Error | 40 | 3064 | 260 | #!/usr/bin/python3
import sys
sys.setrecursionlimit(1000000)
N, X = list(map(int, input().split()))
def f(a,b):
if a > b:
a,b = b,a
if b%a is 0:
return int(a*(2*(b/a)-1))
return int(2*a*int(b/a) + f(a,b%a))
print(N+f(N-X, X))
| /tmp/tmpg6m3kycc/tmpy5rk47tp.py:12: SyntaxWarning: "is" with a literal. Did you mean "=="?
if b%a is 0:
Traceback (most recent call last):
File "/tmp/tmpg6m3kycc/tmpy5rk47tp.py", line 6, in <module>
N, X = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s825196794 | p04048 | u579875569 | 1469306185 | Python | Python (3.4.3) | py | Runtime Error | 40 | 3064 | 259 | #!/usr/bin/python3
import sys
sys.setrecursionlimit(100000)
N, X = list(map(int, input().split()))
def f(a,b):
if a > b:
a,b = b,a
if b%a is 0:
return int(a*(2*(b/a)-1))
return int(2*a*int(b/a) + f(a,b%a))
print(N+f(N-X, X))
| /tmp/tmplt5rays8/tmp37djt0o5.py:12: SyntaxWarning: "is" with a literal. Did you mean "=="?
if b%a is 0:
Traceback (most recent call last):
File "/tmp/tmplt5rays8/tmp37djt0o5.py", line 6, in <module>
N, X = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s754744111 | p04048 | u477320129 | 1468728474 | Python | Python (3.4.3) | py | Runtime Error | 183 | 4468 | 241 | import sys
sys.setrecursionlimit(1500)
def f(x, y):
if x == 0:
return 0
if x == y:
return x
x, y = min(x, y), max(x, y)
return 2 * x + f(x, y - x)
N, X = list(map(int, input().split()))
print(f(X, N-X) + N)
| Traceback (most recent call last):
File "/tmp/tmpl3_u5qyo/tmp21y2dpr7.py", line 12, in <module>
N, X = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s191680008 | p04048 | u477320129 | 1468728321 | Python | Python (3.4.3) | py | Runtime Error | 46 | 3116 | 220 | import sys
sys.setrecursionlimit(1500)
def f(x, y):
if x == y:
return x
x, y = min(x, y), max(x, y)
return 2 * (y // x) * x + f(x, y % x)
N, X = list(map(int, input().split()))
print(f(X, N-X) + N)
| Traceback (most recent call last):
File "/tmp/tmp7nga1ko_/tmphrq3vuji.py", line 10, in <module>
N, X = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s472515885 | p04048 | u477320129 | 1468728096 | Python | Python (3.4.3) | py | Runtime Error | 185 | 4004 | 169 | def f(x, y):
if x == y:
return x
x, y = min(x, y), max(x, y)
return 2 * x + f(x, y - x)
N, X = list(map(int, input().split()))
print(f(X, N-X) + N)
| Traceback (most recent call last):
File "/tmp/tmpnonj97do/tmp7yr47g2_.py", line 7, in <module>
N, X = list(map(int, input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s034131434 | p04048 | u941268675 | 1468723030 | Python | Python (2.7.6) | py | Runtime Error | 80 | 3552 | 177 | def f(a, b):
if a == 1 and b == 1:
return 1
r = min(a, b)
q = max(a, b)
return 2*r + f(r, q-r)
N, X = map(int, raw_input().split())
print N + f(X, N-X) | File "/tmp/tmplsl08m7r/tmpnr66m8rs.py", line 10
print N + f(X, N-X)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s046359757 | p04048 | u810735437 | 1468719159 | Python | Python (3.4.3) | py | Runtime Error | 223 | 4644 | 490 | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
import functools
def gcd(a, b):
while b:
a, b = b, a % b
return a
@functools.lru_cache(maxsize = None)
def func(N, X):
g = gcd(N, X)
if g == 1:
if X > N // 2:
return func(N, N - X)
if N == 2:
return 3
... | Traceback (most recent call last):
File "/tmp/tmpef2f4d0p/tmptq6kt4zk.py", line 25, in <module>
N,X = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s124680257 | p04048 | u810735437 | 1468719056 | Python | Python (3.4.3) | py | Runtime Error | 302 | 4556 | 492 | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
import functools
def gcd(a, b):
while b:
a, b = b, a % b
return a
@functools.lru_cache(maxsize = None)
def func(N, X):
g = gcd(N, X)
if g == 1:
if X > N // 2:
return func(N, N - X)
if N == 2:
return 3
if N ... | Traceback (most recent call last):
File "/tmp/tmpic6gfexn/tmp85y5jcza.py", line 25, in <module>
N,X = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s412168424 | p04048 | u945080461 | 1468718591 | Python | Python (2.7.6) | py | Runtime Error | 29 | 2568 | 87 | n, x = map(int, raw_input().split())
g = gcd(n, x)
n /= g
x /= g
print 3 * (n - 1) * g
| File "/tmp/tmp9rqr9e6k/tmpghn8hwa3.py", line 5
print 3 * (n - 1) * g
^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s315910061 | p04049 | u535803878 | 1593985757 | Python | PyPy3 (7.3.0) | py | Runtime Error | 108 | 78304 | 1209 | import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")
from collections import defaultdict
n,k = map(int, input().split())
ns = defaultdict(set)
for _ in range(n-1):
u,v = map(int, input().split())
u -= 1
v -= 1
ns[u... | Traceback (most recent call last):
File "/tmp/tmp2pxvinwf/tmp05zfbckl.py", line 8, in <module>
n,k = map(int, input().split())
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s994436547 | p04049 | u340781749 | 1588711344 | Python | Python (3.4.3) | py | Runtime Error | 2104 | 4956 | 1024 | import sys
from collections import deque
def bfs(links, s, limit):
not_reachable = (1 << len(links)) - 1
q = deque([(0, s, -1)])
pop = q.popleft
extend = q.extend
while q:
cost, v, p = pop()
if cost > limit:
break
not_reachable ^= 1 << v
cost += 1
... | Traceback (most recent call last):
File "/tmp/tmp5pd22zyb/tmpnsyexzox.py", line 41, in <module>
n, k = map(int, sys.stdin.buffer.readline().split())
^^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s748681090 | p04049 | u340781749 | 1588711257 | Python | Python (3.4.3) | py | Runtime Error | 23 | 4084 | 1085 | import sys
from collections import deque
def bfs(links, s, limit):
not_reachable = (1 << len(links)) - 1
q = deque([(0, s, -1)])
pop = q.popleft
extend = q.extend
while q:
cost, v, p = pop()
if cost > limit:
break
not_reachable ^= 1 << v
cost += 1
... | Traceback (most recent call last):
File "/tmp/tmpbgqfkupk/tmpk1ysuo6p.py", line 42, in <module>
n, k = map(int, sys.stdin.buffer.readline().split())
^^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s938174787 | p04049 | u340781749 | 1588710413 | Python | Python (3.4.3) | py | Runtime Error | 2106 | 35700 | 1024 | import sys
from collections import deque, defaultdict
def bfs(links, s, limit):
not_reachable = [True] * len(links)
q = deque([(0, s, -1)])
while q:
cost, v, p = q.popleft()
if cost > limit:
break
not_reachable[v] = False
cost += 1
q.extend((cost, u, v) ... | Traceback (most recent call last):
File "/tmp/tmp42ipu0mh/tmprr2_u3r6.py", line 42, in <module>
n, k, *ab = map(int, sys.stdin.buffer.read().split())
^^^^^^^^^
ValueError: not enough values to unpack (expected at least 2, got 0)
| |
s369512498 | p04049 | u693716675 | 1583471525 | Python | Python (3.4.3) | py | Runtime Error | 2104 | 4316 | 1311 | #C
n,k = [int(i) for i in input().split()]
edges = [[] for _ in range(n)]
for i in range(n-1):
a,b = [int(j) for j in input().split()]
edges[a-1].append(b-1)
edges[b-1].append(a-1)
def dfs(u, cost):
if dist[u]>=0: #if searched already
return
dist[u] = cost
e = edges[u]
for ... | Traceback (most recent call last):
File "/tmp/tmpydqtl690/tmpj0bvg_ur.py", line 2, in <module>
n,k = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s434611661 | p04049 | u693716675 | 1583471146 | Python | Python (3.4.3) | py | Runtime Error | 2104 | 4328 | 1520 | #C
n,k = [int(i) for i in input().split()]
edges = [[] for _ in range(n)]
for i in range(n-1):
a,b = [int(j) for j in input().split()]
edges[a-1].append(b-1)
edges[b-1].append(a-1)
ans = n
#when k is even, we should think about each node
if k%2==0:
def dfs(u, cost):
if dist[u]>=0: #if s... | Traceback (most recent call last):
File "/tmp/tmpt6rjicne/tmpgnihmue6.py", line 2, in <module>
n,k = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s296170347 | p04049 | u076506345 | 1581785258 | Python | Python (3.4.3) | py | Runtime Error | 91 | 4672 | 1814 | n, k = map(int, input().split())
tree = [[] for i in range(n)]
for _ in range(n - 1):
a, b = sorted(map(int, input().split()))
tree[a - 1].append(b - 1)
tree[b - 1].append(a - 1)
def search(tree, pos, past=None, depth=0):
"""
子孫ノードを探索して、最深のノードとその深さを返す
"""
# 子ノードを探索する
ress = [] # 子ノードの... | Traceback (most recent call last):
File "/tmp/tmpad_gv_n0/tmpksnvwhso.py", line 1, in <module>
n, k = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s989027159 | p04049 | u076506345 | 1581784614 | Python | Python (3.4.3) | py | Runtime Error | 92 | 4672 | 1893 | n, k = map(int, input().split())
tree = [[] for i in range(n)]
for _ in range(n - 1):
a, b = sorted(map(int, input().split()))
tree[a - 1].append(b - 1)
tree[b - 1].append(a - 1)
def search(tree, pos, past=None, depth=0):
"""
子孫ノードを探索して、最深のノードとその深さを返す
"""
# 子ノードを探索する
ress = [] # 子ノードの... | Traceback (most recent call last):
File "/tmp/tmpof2qrm92/tmp6zpw0so9.py", line 1, in <module>
n, k = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s406256226 | p04049 | u803848678 | 1576341539 | Python | PyPy3 (2.4.0) | py | Runtime Error | 1475 | 119260 | 763 | import sys
reader = (s.rstrip() for s in sys.stdin)
input = reader.__next__
n,k = map(int, input().split())
G = [[] for i in range(n)]
edges = []
for i in range(n-1):
a,b = map(int, input().split())
a,b = a-1,b-1
G[a].append(b)
G[b].append(a)
edges.append((a,b))
cnt = [0]
def search(cur, prev, dep... | Traceback (most recent call last):
File "/tmp/tmpkgn4d3lb/tmpycx6h9rf.py", line 5, in <module>
n,k = map(int, input().split())
^^^^^^^
StopIteration
| |
s510777512 | p04049 | u495699318 | 1573878803 | Python | Python (3.4.3) | py | Runtime Error | 18 | 2940 | 1872 | #include <stdio.h>
#include <algorithm>
#include <assert.h>
#include <bitset>
#include <cmath>
#include <complex>
#include <deque>
#include <functional>
#include <iostream>
#include <limits.h>
#include <map>
#include <math.h>
#include <queue>
#include <set>
#include <stdlib.h>
#include <string... | File "/tmp/tmp6eld2qdu/tmpm5n2q3r2.py", line 40
using namespace std;
^^^^^^^^^
SyntaxError: invalid syntax
| |
s076769013 | p04049 | u352623442 | 1551780301 | Python | Python (3.4.3) | py | Runtime Error | 2111 | 118872 | 942 | n,k = map(int,input().split())
INF = float("inf")
edges = [[] for i in range(n)]
ega = []
for i in range(n-1):
a,b = map(int,input().split())
a = a-1
b = b-1
edges[a].append(b)
edges[b].append(a)
ega.append([a,b])
def dfs(v):
d= [0] * n
q=[v]
visited = [0] * n
while q:
... | Traceback (most recent call last):
File "/tmp/tmpj0146lss/tmpoi07bmag.py", line 1, in <module>
n,k = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s188294736 | p04049 | u352623442 | 1551780236 | Python | PyPy3 (2.4.0) | py | Runtime Error | 611 | 83800 | 942 | n,k = map(int,input().split())
INF = float("inf")
edges = [[] for i in range(n)]
ega = []
for i in range(n-1):
a,b = map(int,input().split())
a = a-1
b = b-1
edges[a].append(b)
edges[b].append(a)
ega.append([a,b])
def dfs(v):
d= [0] * n
q=[v]
visited = [0] * n
while q:
... | Traceback (most recent call last):
File "/tmp/tmppa_gn4wy/tmpa8d7269q.py", line 1, in <module>
n,k = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s963926242 | p04049 | u352623442 | 1551779820 | Python | PyPy3 (2.4.0) | py | Runtime Error | 188 | 38384 | 1048 | n,k = map(int,input().split())
import numpy as np
INF = float("inf")
edges = [[] for i in range(n)]
ega = []
for i in range(n-1):
a,b = map(int,input().split())
a = a-1
b = b-1
edges[a].append(b)
edges[b].append(a)
ega.append([a,b])
def dfs(v):
visited = []
INF = float("inf")
d=[... | Traceback (most recent call last):
File "/tmp/tmpa6bgxpsq/tmpgi9h27md.py", line 1, in <module>
n,k = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s215625013 | p04049 | u214617707 | 1550955362 | Python | PyPy3 (2.4.0) | py | Runtime Error | 1180 | 129696 | 440 | N, K = map(int, input().split())
G = [[] for i in range(N)]
for i in range(N - 1):
a, b = map(int, input().split())
G[a - 1].append(b - 1)
G[b - 1].append(a - 1)
def dfs(u, par, d):
global tmp
if d > K // 2:
tmp += 1
for w in G[u]:
if w == par:
continue
dfs... | Traceback (most recent call last):
File "/tmp/tmp5qwttz6w/tmpaaf2i9u7.py", line 1, in <module>
N, K = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s609326818 | p04049 | u284854859 | 1550824657 | Python | PyPy3 (2.4.0) | py | Runtime Error | 1436 | 112728 | 755 | #import sys
#input = sys.stdin.readline
n,k = map(int,input().split())
edge = [[] for i in range(n)]
alledge = []
for i in range(n-1):
a,b = map(int,input().split())
edge[a-1].append(b-1)
edge[b-1].append(a-1)
alledge.append((a-1,b-1))
def f(x,y,c):
global tmp
c += 1
for e in edge[x]:
... | Traceback (most recent call last):
File "/tmp/tmp21wyxw5r/tmpuvo8j2mr.py", line 3, in <module>
n,k = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s532382604 | p04049 | u284854859 | 1550818480 | Python | Python (3.4.3) | py | Runtime Error | 18 | 3064 | 787 | import sys
sys.setrecursionlimit(5000000)
input = sys.stdin.readline
n,k = map(int,input().split())
edge = [[] for i in range(n)]
alledge = []
for i in range(n-1):
a,b = map(int,input().split())
edge[a-1].append(b-1)
edge[b-1].append(a-1)
alledge.append((a-1,b-1))
if n==2:
print(0)
exit()
def ... | File "/tmp/tmpr5t1wggs/tmp1no4_d14.py", line 23
f(e,x,c)
^
IndentationError: unindent does not match any outer indentation level
| |
s931452563 | p04049 | u284854859 | 1550815806 | Python | Python (3.4.3) | py | Runtime Error | 1790 | 4652 | 816 | import sys
input = sys.stdin.readline
n,k = map(int,input().split())
edge = [[] for i in range(n)]
alledge = []
for i in range(n-1):
a,b = map(int,input().split())
edge[a-1].append(b-1)
edge[b-1].append(a-1)
alledge.append([a-1,b-1])
if n==2:
print(0)
exit()
def f(x,y,c):
c += 1
for e ... | Traceback (most recent call last):
File "/tmp/tmpab9yozam/tmp5m69uu5c.py", line 3, in <module>
n,k = map(int,input().split())
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s238312663 | p04049 | u284854859 | 1550815527 | Python | Python (3.4.3) | py | Runtime Error | 81 | 4596 | 732 | import sys
input = sys.stdin.readline
n,k = map(int,input().split())
edge = [[] for i in range(n)]
alledge = []
for i in range(n-1):
a,b = map(int,input().split())
edge[a-1].append(b-1)
edge[b-1].append(a-1)
alledge.append([a-1,b-1])
if n==2:
print(0)
exit()
def f(x):
#c +=1
for e in e... | Traceback (most recent call last):
File "/tmp/tmph3qk7dsn/tmpy_i4ondi.py", line 3, in <module>
n,k = map(int,input().split())
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s587581130 | p04049 | u284854859 | 1550815420 | Python | Python (3.4.3) | py | Runtime Error | 1004 | 4628 | 751 | import sys
input = sys.stdin.readline
n,k = map(int,input().split())
edge = [[] for i in range(n)]
alledge = []
for i in range(n-1):
a,b = map(int,input().split())
edge[a-1].append(b-1)
edge[b-1].append(a-1)
alledge.append([a-1,b-1])
if n==2:
print(0)
exit()
def f(x,y):
#c +=1
for e in... | Traceback (most recent call last):
File "/tmp/tmprtgqc3wk/tmp6jg37sn7.py", line 3, in <module>
n,k = map(int,input().split())
^^^
ValueError: not enough values to unpack (expected 2, got 0)
| |
s300255193 | p04049 | u284854859 | 1550812219 | Python | Python (3.4.3) | py | Runtime Error | 1867 | 4668 | 781 | import sys
input = sys.stdin.readline
n,k = map(int,input().split())
edge = [[] for i in range(n)]
alledge = []
for i in range(n-1):
a,b = map(int,input().split())
edge[a-1].append(b-1)
edge[b-1].append(a-1)
alledge.append([a-1,b-1])
if n==2:
print(0)
exit()
def f(x,y,c):
c += 1
for e ... | Traceback (most recent call last):
File "/tmp/tmpt0fcli2j/tmpw178j4r6.py", line 3, in <module>
n,k = map(int,input().split())
^^^
ValueError: not enough values to unpack (expected 2, got 0)
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.