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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s012522244 | p02399 | u498462680 | 1546256927 | Python | Python3 | py | Runtime Error | 0 | 0 | 161 | a,b = [float(i) for i in input().split()]
d = int(a/b)
r = int(a) % int(b)
f = a/b
f = round(decimal.Decimal(f), 10)
print(str(d) + " " + str(r) + " " + str(f))
| Traceback (most recent call last):
File "/tmp/tmpjxkfnw98/tmpolaoi58f.py", line 1, in <module>
a,b = [float(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s526686714 | p02399 | u498462680 | 1546256968 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | a,b = [float(i) for i in input().split()]
d = int(a/b)
r = int(a) % int(b)
f = a/b
f2 = round(decimal.Decimal(f), 10)
print(str(d) + " " + str(r) + " " + str(f2))
| Traceback (most recent call last):
File "/tmp/tmpib9lp39r/tmphz0t2qnb.py", line 1, in <module>
a,b = [float(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s009640640 | p02399 | u928633434 | 1555813076 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | a,b = (int(x) for x in input().split())
d = a // b
r = a % b
(float) f = a / b
print (str(d) + " " + str(r) + " " + str(f))
| File "/tmp/tmp1ixzujb0/tmpky6sat1f.py", line 5
(float) f = a / b
^
SyntaxError: invalid syntax
| |
s872140934 | p02399 | u928633434 | 1555813098 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | a,b = (int(x) for x in input().split())
d = a // b
r = a % b
(float) f = (float)a / (float)b
print (str(d) + " " + str(r) + " " + str(f))
| File "/tmp/tmpbyc2btna/tmp7v32mgyf.py", line 5
(float) f = (float)a / (float)b
^
SyntaxError: invalid syntax
| |
s170895651 | p02399 | u115403933 | 1555848711 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | ab = input().split()
a = ab[0]
b = ab[1]
d = int(a / b)
r = a % b
f = a / b
print(d,r,f)
| Traceback (most recent call last):
File "/tmp/tmphca1qch6/tmpspye8337.py", line 1, in <module>
ab = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s606769430 | p02399 | u638889288 | 1555898651 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a,op,b=map(str,input().split())
a=int(a)
b=int(b)
print("%d %d %0.5f",a/b,a%b,a/b)
| Traceback (most recent call last):
File "/tmp/tmphb0gslnm/tmpe8qdo82v.py", line 1, in <module>
a,op,b=map(str,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s296600812 | p02399 | u525395303 | 1555982377 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a, b = gets.split.map(&:to_i)
printf "%d %d %.5f", a / b, a % b, a.to_f / b
| File "/tmp/tmpumb1p50a/tmpjfc1ebhl.py", line 1
a, b = gets.split.map(&:to_i)
^
SyntaxError: invalid syntax
| |
s466445966 | p02399 | u093488647 | 1555999512 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | import math
data = input().split()
a = int(data[0])
b = int(data[1])
d = math.float(a/b)
r = a%b
f = a/b
print(d, " ", r, " ", f)
| Traceback (most recent call last):
File "/tmp/tmpcic2t08y/tmp849unmvs.py", line 3, in <module>
data = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s814149610 | p02399 | u651717882 | 1556038479 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a,b=input().split()
a=int(a)
b=int(b)
a/b=d
d=int(d)
a%b=r
r=int(r)
a/b=f
f = float(f)
print(d,r,f)
| File "/tmp/tmpgdfzc599/tmpny3ar34d.py", line 4
a/b=d
^^^
SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
| |
s127590466 | p02399 | u651717882 | 1556038539 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a,b=input().split()
a=int(a)
b=int(b)
a//b=d
d=int(d)
a%b=r
r=int(r)
a/b=f
f = float(f)
print(d,r,f)
| File "/tmp/tmphk9n25ue/tmp7zbwapv8.py", line 4
a//b=d
^^^^
SyntaxError: cannot assign to expression here. Maybe you meant '==' instead of '='?
| |
s463216257 | p02399 | u592815095 | 1556203293 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b=map(int,input().split());print("{:d},{:d},{:.10f}".format(a//d,a%b,a/b))
| Traceback (most recent call last):
File "/tmp/tmp6ktq57kz/tmpv44_8o6n.py", line 1, in <module>
a,b=map(int,input().split());print("{:d},{:d},{:.10f}".format(a//d,a%b,a/b))
^^^^^^^
EOFError: EOF when reading a line
| |
s679186798 | p02399 | u592815095 | 1556203338 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b=map(int,input().split());print("{:d} {:d} {:.10f}".format(a//d,a%b,a/b))
| Traceback (most recent call last):
File "/tmp/tmpwyh4l87f/tmpfqa2_9wq.py", line 1, in <module>
a,b=map(int,input().split());print("{:d} {:d} {:.10f}".format(a//d,a%b,a/b))
^^^^^^^
EOFError: EOF when reading a line
| |
s713453043 | p02399 | u592815095 | 1556203549 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | a,b=map(int,input().split());print(a//b,a%b."{:10.10f}".format(a/b))
| File "/tmp/tmpd757cet3/tmpoi5jr6rt.py", line 1
a,b=map(int,input().split());print(a//b,a%b."{:10.10f}".format(a/b))
^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s187844036 | p02399 | u592815095 | 1556203561 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int,input().split());print(a//b,a%b."{0:10.10f}".format(a/b))
| File "/tmp/tmpdhrdp8ok/tmpmkiaq6_l.py", line 1
a,b=map(int,input().split());print(a//b,a%b."{0:10.10f}".format(a/b))
^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s846848002 | p02399 | u592815095 | 1556203571 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int,input().split())
print(a//b,a%b."{0:10.10f}".format(a/b))
| File "/tmp/tmpr5huxrwt/tmpx3_9sgeq.py", line 2
print(a//b,a%b."{0:10.10f}".format(a/b))
^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s808899960 | p02399 | u592815095 | 1556203590 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a,b=map(int,input().split())
print(a//b,a%b."{0:10.20f}".format(a/b))
| File "/tmp/tmps0ar8p1d/tmp635a3gja.py", line 2
print(a//b,a%b."{0:10.20f}".format(a/b))
^^^^^^^^^^^^
SyntaxError: invalid syntax
| |
s953723471 | p02399 | u630518143 | 1556543764 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 |
nums = [int(e) for e in input().split()]
a = int(nums[0]/nums[1])
b = int(nums[0]%nums[1])
c = nums[0]/nums[1] - a
print(a,b,c)a
| File "/tmp/tmpfgjhpia5/tmprnpf4lau.py", line 6
print(a,b,c)a
^
SyntaxError: invalid syntax
| |
s516297934 | p02399 | u630518143 | 1556543816 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 |
nums = [int(e) for e in input().split()]
a = int(nums[0]/nums[1])
b = int(nums[0]%nums[1])
c = decimaru(nums[0]/nums[1])
print(a,b,c)
| Traceback (most recent call last):
File "/tmp/tmpf0hab4xy/tmpe6p1_dtc.py", line 2, in <module>
nums = [int(e) for e in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s624168506 | p02399 | u777181309 | 1556847293 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a, b = int(input())
d = a//b
r = a%b
f = a/b
print(d, r, f)
| Traceback (most recent call last):
File "/tmp/tmpgyqg177s/tmp_5ale776.py", line 1, in <module>
a, b = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s992216238 | p02399 | u823030818 | 1422409975 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b\
df = a / b
print(dl, m, df) | File "/tmp/tmpt68puh0g/tmpdcz3eb7u.py", line 5
df = a / b
^^
SyntaxError: invalid syntax
| |
s683401164 | p02399 | u823030818 | 1422410109 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b\
df = a / b
print(dl, m, df) | File "/tmp/tmp9lumslre/tmpm9wq8vl_.py", line 5
df = a / b
^^
SyntaxError: invalid syntax
| |
s581400598 | p02399 | u823030818 | 1422410121 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print(dl, m, df) | Traceback (most recent call last):
File "/tmp/tmpo4grjdtm/tmp50clcqjr.py", line 1, in <module>
(a, b) = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s649083872 | p02399 | u823030818 | 1422410293 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b
m = a % b
df = a / b
print(dl, m, df) | Traceback (most recent call last):
File "/tmp/tmpt6hndumi/tmpsqx9eahm.py", line 1, in <module>
(a, b) = [int(x) for x in input().split(' ')]
^^^^^^^
EOFError: EOF when reading a line
| |
s969329185 | p02399 | u823030818 | 1422410481 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b
m = a % b
df = a / b
print(dl, m, df) | Traceback (most recent call last):
File "/tmp/tmpn3etupqa/tmptsxnk4e1.py", line 1, in <module>
(a, b) = [int(x) for x in input().split(' ')]
^^^^^^^
EOFError: EOF when reading a line
| |
s456059900 | p02399 | u823030818 | 1422410497 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b:
m = a % b:
df = a / b:
print(dl, m, df) | File "/tmp/tmpde9an9q8/tmpyupg0l4r.py", line 3
di = a // b:
^
SyntaxError: invalid syntax
| |
s740744699 | p02399 | u823030818 | 1422410542 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | (a, b) = [int(x) for x in input().split(' ')]
dl = a // b:
m = a % b:
df = a / b:
print(dl, m, df) | File "/tmp/tmp5rmbkdxg/tmpj2rkzkcx.py", line 3
dl = a // b:
^
SyntaxError: invalid syntax
| |
s402739797 | p02399 | u823030818 | 1422410554 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | (a, b) = [int(x) for x in input().split(' ')]
dl = a // b:
m = a % b:
df = a / b:
print(dl, m, df) | File "/tmp/tmpfbp74odm/tmpdhkn3q8t.py", line 3
dl = a // b:
^
SyntaxError: invalid syntax
| |
s045690645 | p02399 | u823030818 | 1422411072 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | (a, b) = [int(x) for x in input().split(' ')]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.di, m, df)) | File "/tmp/tmpi3x05u0r/tmpx_ad8syw.py", line 7
print('{0} {1} {2:.8f}'.di, m, df))
^
SyntaxError: unmatched ')'
| |
s122138245 | p02399 | u823030818 | 1422411156 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:,8f}'.di, m, df)) | File "/tmp/tmp3w9byju2/tmpeclk6sj2.py", line 7
print('{0} {1} {2:,8f}'.di, m, df))
^
SyntaxError: unmatched ')'
| |
s158180599 | p02399 | u823030818 | 1422411232 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.di, m, df)) | File "/tmp/tmpka3gw01c/tmp0z32x_ox.py", line 7
print('{0} {1} {2:.8f}'.di, m, df))
^
SyntaxError: unmatched ')'
| |
s407664076 | p02399 | u823030818 | 1422411287 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.format.di, m, df)) | File "/tmp/tmpdwsnmvhf/tmp6kq8vycd.py", line 7
print('{0} {1} {2:.8f}'.format.di, m, df))
^
SyntaxError: unmatched ')'
| |
s257390653 | p02399 | u823030818 | 1422411297 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | (a, b) = [int(x) for x in input().split()]
di = a // b
m = a % b
df = a / b
print('{0} {1} {2:.8f}'.format().di, m, df)) | File "/tmp/tmpay45s11e/tmplfkqr8sg.py", line 7
print('{0} {1} {2:.8f}'.format().di, m, df))
^
SyntaxError: unmatched ')'
| |
s935862397 | p02399 | u527848444 | 1422841147 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | (a,b) = [int (x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:.6f}'.format(x,y,z)) | Traceback (most recent call last):
File "/tmp/tmpgl23_6a1/tmpvgy3o6ia.py", line 1, in <module>
(a,b) = [int (x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s010251698 | p02399 | u442346200 | 1422841185 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | (a, b) = [int(x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:6f}'.format(x, y, z)); | Traceback (most recent call last):
File "/tmp/tmp64n733u3/tmp6tll8p4g.py", line 1, in <module>
(a, b) = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s307299853 | p02399 | u442346200 | 1422841207 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | (a, b) = [int(x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:.6f}'.format(x, y, z)); | Traceback (most recent call last):
File "/tmp/tmpbvsf0y38/tmp9y2z811m.py", line 1, in <module>
(a, b) = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s865948506 | p02399 | u745846646 | 1422841319 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | (a, b) = [int (x) for x in input().split()]
x = a // b
y = a % b
z = a / b
print('{1} {2} {3:.6f}'.format(x,y,z)) | Traceback (most recent call last):
File "/tmp/tmpkkmg0qhr/tmpeuf5ye0j.py", line 1, in <module>
(a, b) = [int (x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s546526950 | p02399 | u281873326 | 1427420384 | Python | Python | py | Runtime Error | 0 | 0 | 109 | [a,b]=map(raw_input().split())
x=long(a)
y=long(b)
z=float(x)
w=float(y)
d=x/y
r=x%y
f=1.0000*z/w
print d,r,f | File "/tmp/tmpmlmaowuq/tmpvxv7g3f1.py", line 9
print d,r,f
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s835101368 | p02399 | u281873326 | 1427421193 | Python | Python | py | Runtime Error | 0 | 0 | 109 | [a,b]=map(raw_input().split())
x=long(a)
y=long(b)
z=float(x)
w=float(y)
d=x/y
r=x%y
f=1.0000*z/y
print d,r,f | File "/tmp/tmpipzp9nvg/tmpgvvv3pgl.py", line 9
print d,r,f
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s813288730 | p02399 | u137212517 | 1429545141 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | r = int(input())
print(r * r * 3.14159, 2 * r * 3.14159) | Traceback (most recent call last):
File "/tmp/tmpjlqq9w_4/tmpa74ta3jm.py", line 1, in <module>
r = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s835813230 | p02399 | u604774382 | 1429791231 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | import sys
a, b = [ int( val ) for val in sys.stdin.readline().split( ' ' ) ]
print( "{} {} {0:.5f}".format( a/b, a%b, float(a)/float(b) ) ) | Traceback (most recent call last):
File "/tmp/tmp_irpnjtd/tmpfnpnu5rz.py", line 3, in <module>
a, b = [ int( val ) for val in sys.stdin.readline().split( ' ' ) ]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmp_irpnjtd/tmpfnpnu5rz.py", line 3, in <listcomp>
a, b = [ int(... | |
s396252584 | p02399 | u604774382 | 1429791770 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | import sys
a, b = [ int( val ) for val in sys.stdin.readline().split( ' ' ) ]
print( "{} {} {0:f}".format( a/b, a%b, float(a)/float(b) ) ) | Traceback (most recent call last):
File "/tmp/tmpryimw6py/tmp56o3csz5.py", line 3, in <module>
a, b = [ int( val ) for val in sys.stdin.readline().split( ' ' ) ]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/tmp/tmpryimw6py/tmp56o3csz5.py", line 3, in <listcomp>
a, b = [ int(... | |
s951471974 | p02399 | u669360983 | 1430142273 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b=map(int, input().split())
a,b=map(int, input().split())
print('%d %d %f' %(a/b, a%b, a/b)) | Traceback (most recent call last):
File "/tmp/tmpqmh6wa8w/tmp1wu_w9ii.py", line 1, in <module>
a,b=map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s838948274 | p02399 | u682755774 | 1431809086 | Python | Python | py | Runtime Error | 0 | 0 | 122 | #coding:UTF-8
n = 0
a,b,c = map(int,raw_input().split())
for i in range(a,b+1):
if c % i == 0:
n += 1
print n | File "/tmp/tmplzryfhhu/tmpwslnq18e.py", line 8
print n
^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s119593277 | p02399 | u446066125 | 1437959267 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | (a, b) = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print('s% s% %.5f' (d, r, f)) | /tmp/tmpqicy0_kk/tmpn0o5zbtc.py:8: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma?
print('s% s% %.5f' (d, r, f))
Traceback (most recent call last):
File "/tmp/tmpqicy0_kk/tmpn0o5zbtc.py", line 1, in <module>
(a, b) = [int(i) for i in input().split()]
^^^^^^... | |
s631442404 | p02399 | u446066125 | 1437959282 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | (a, b) = [int(i) for i in input().split()]
d = a // b
r = a % b
f = a / b
print('s% s% %.5f' % (d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpfbtafjdy/tmpm6v2yzmm.py", line 1, in <module>
(a, b) = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s909318253 | p02399 | u473077745 | 1437959547 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | (a, b) = [int(i) for i in input()]
2 d = a // b
3 r = a % b
4 f = a / b
5 print('%s %s %.5f' % (d, r, f) | File "/tmp/tmpm3_ops85/tmplv8z5jlp.py", line 1
(a, b) = [int(i) for i in input()]
IndentationError: unexpected indent
| |
s155754216 | p02399 | u473077745 | 1437959652 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | (a, b) = [int(i) for i in input()]
d = a // b
r = a % b
f = a / b
print('%s %s %.5f' % (d, r, f) | File "/tmp/tmpkba1nvu6/tmpbtstlmst.py", line 5
print('%s %s %.5f' % (d, r, f)
^
SyntaxError: '(' was never closed
| |
s992997425 | p02399 | u255164080 | 1439772323 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | (a, b) = [int(i) for i in input().split()]
d = int(a / b)
r = a % b
f = a / b
print('%s %s %.5f' % (d, r, f)) | File "/tmp/tmp9aghle97/tmp12s3wxe_.py", line 2
d = int(a / b)
IndentationError: unexpected indent
| |
s118666565 | p02399 | u473077745 | 1439830906 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | (a, b) = [int(i) for i in input()]
d = a // b
r = a % b
f = a / b
print('%s %s %.5f' % (d, r, f) | File "/tmp/tmpqp1vd6k1/tmpfbgt3o_n.py", line 5
print('%s %s %.5f' % (d, r, f)
^
SyntaxError: '(' was never closed
| |
s244654078 | p02399 | u473077745 | 1439831377 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | (a, b) = [int(i) for i in input()]
while True:
d = a // b
r = a % b
f = a / b
print( '{0:d} {1:d} {2:.5f}'.format( d, r, f))
break | Traceback (most recent call last):
File "/tmp/tmpdtpz5ejf/tmp278neg5n.py", line 1, in <module>
(a, b) = [int(i) for i in input()]
^^^^^^^
EOFError: EOF when reading a line
| |
s298016485 | p02399 | u473077745 | 1439831496 | Python | Python3 | py | Runtime Error | 0 | 0 | 159 | a, b) = [int(i) for i in input().split()]
while True:
d = a // b
r = a % b
f = a / b
print( '{0:d} {1:d} {2:.5f}'.format( d, r, f))
break | File "/tmp/tmpd4yb9vw1/tmpu90h1x_y.py", line 1
a, b) = [int(i) for i in input().split()]
^
SyntaxError: unmatched ')'
| |
s929666895 | p02399 | u501414488 | 1439854802 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | input()
data = [int(i) for i in input().split()]
print(min(data), max(data), sum(data)) | Traceback (most recent call last):
File "/tmp/tmpsxemlq2b/tmpfaz1vyyl.py", line 1, in <module>
input()
EOFError: EOF when reading a line
| |
s773352039 | p02399 | u978086225 | 1439859113 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | input()
data = [int(i) for i in input().split()]
print(min(data), max(data), sum(data)) | Traceback (most recent call last):
File "/tmp/tmp80yn5ft1/tmp0ref_gz4.py", line 1, in <module>
input()
EOFError: EOF when reading a line
| |
s856588133 | p02399 | u978086225 | 1439859839 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | (a, b) = [int(i) for i in input().split()]
d = int(a / b)
r = a % b
f = a / b
print('%s %s %. 5f' % (d, r, f)) | Traceback (most recent call last):
File "/tmp/tmpj8l9dyyv/tmp8eoi0aah.py", line 1, in <module>
(a, b) = [int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s865963081 | p02399 | u782850731 | 1440885405 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | print('{0[0]} {0[1]} {0[2]:.5f}'.format(
(lambda a, b: (a // b, a % d, a / b))(
*map(int, input().split()))) | File "/tmp/tmpffglp3cm/tmpd9hygnsx.py", line 1
print('{0[0]} {0[1]} {0[2]:.5f}'.format(
^
SyntaxError: '(' was never closed
| |
s646684428 | p02399 | u782850731 | 1440885596 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | print('{0[0]} {0[1]} {0[2]:.6f}'.format(
(lambda a, b: (a // b, a % d, a / b))(
*map(int, input().split()))) | File "/tmp/tmpws2_7f0w/tmprs68t_lt.py", line 1
print('{0[0]} {0[1]} {0[2]:.6f}'.format(
^
SyntaxError: '(' was never closed
| |
s222341016 | p02399 | u782850731 | 1440885609 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | print('{0[0]} {0[1]} {0[2]}'.format(
(lambda a, b: (a // b, a % d, a / b))(
*map(int, input().split()))) | File "/tmp/tmp8be7djuj/tmp7c_1v22r.py", line 1
print('{0[0]} {0[1]} {0[2]}'.format(
^
SyntaxError: '(' was never closed
| |
s949827039 | p02399 | u782850731 | 1440885628 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | print('{0[0]} {0[1]} {0[2]}'.format(
(lambda a, b: (a // b, a % b, a / b))(
*map(int, input().split()))) | File "/tmp/tmpf_ql0_la/tmp9xc8ddhw.py", line 1
print('{0[0]} {0[1]} {0[2]}'.format(
^
SyntaxError: '(' was never closed
| |
s344551206 | p02399 | u627893595 | 1443595425 | Python | Python3 | py | Runtime Error | 0 | 0 | 144 | a,b,c = map(int,input().split()) ;
count = 0 ;
for i in range(a,b+1) :
d = c % i ;
if d == 0 :
count = count +1
print("%d" % count) | Traceback (most recent call last):
File "/tmp/tmpiuc1efbl/tmpu02xqw1r.py", line 1, in <module>
a,b,c = map(int,input().split()) ;
^^^^^^^
EOFError: EOF when reading a line
| |
s040246618 | p02399 | u529272062 | 1447042448 | Python | Python | py | Runtime Error | 0 | 0 | 146 | from decimal import *
a,b=map(int, raw_input().split())
d=a/b
r=a%b
Decimal(f)=Decimal(a)/Decimal(b)
print "{0} {1} {2}".format(d, r, Decimal(f)) | File "/tmp/tmpge3qohda/tmpuy_i83qn.py", line 5
Decimal(f)=Decimal(a)/Decimal(b)
^^^^^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s145993432 | p02399 | u811841526 | 1449072801 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a,b = map(int,input().split())
d = a // b
r = a % b
f = a / b
print(' '.join(map(str[d,r,f]))) | Traceback (most recent call last):
File "/tmp/tmpx_3_gg7i/tmplomt91xh.py", line 1, in <module>
a,b = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s648636804 | p02399 | u038005340 | 1453256883 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %f" %(d,r,f) | File "/tmp/tmpan7k7y6q/tmph9awdcjf.py", line 3
int(d) = a / b
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s731113052 | p02399 | u038005340 | 1453256890 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %f" %(d,r,f) | File "/tmp/tmp5cr8dxxf/tmpe_chijco.py", line 3
int(d) = a / b
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s800169058 | p02399 | u038005340 | 1453256903 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %d" %(d,r,f) | File "/tmp/tmpsy2ubxw8/tmpk5gcggp1.py", line 3
int(d) = a / b
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s768655344 | p02399 | u038005340 | 1453256923 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %d" %(d,r,f) | File "/tmp/tmp7ha_gbsq/tmpqa15d0ca.py", line 3
int(d) = a / b
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s329513152 | p02399 | u038005340 | 1453256987 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) a / b
print "%d %d %f" %(d,r,f) | File "/tmp/tmp0xfu1i3u/tmpmw8f9tz4.py", line 3
int(d) = a / b
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s687258696 | p02399 | u038005340 | 1453257057 | Python | Python | py | Runtime Error | 0 | 0 | 113 | a,b = map( int , raw_input().split() )
int(d) = a / b
int(r) = a % b
float(f) = a / b
print "%d %d %f" %(d,r,f) | File "/tmp/tmp2_dgpnd5/tmppfyczfmh.py", line 3
int(d) = a / b
^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s313662101 | p02399 | u970436839 | 1453303711 | Python | Python | py | Runtime Error | 0 | 0 | 101 | a, b = map(int, raw_input().split())
c = double(a)
d = double(b)
print "%d %d %.5f" %(a/b, a%b, c/d) | File "/tmp/tmp1yjkewke/tmpuqqmd2a9.py", line 5
print "%d %d %.5f" %(a/b, a%b, c/d)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s723683075 | p02399 | u724923896 | 1453304517 | Python | Python | py | Runtime Error | 0 | 0 | 98 | a, b = map(int, raw_input().split())
d = a/b
r = a%b
f = double(a/b)
print "%d %d %f" %(d, r, f) | File "/tmp/tmpz55qkel7/tmpd2ytknd6.py", line 7
print "%d %d %f" %(d, r, f)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s434975141 | p02399 | u834416077 | 1453347555 | Python | Python | py | Runtime Error | 0 | 0 | 72 | a,b = map(double,raw_input().split())
print "%d %d %f" %(a/b, a%b, a/b) | File "/tmp/tmp6tshak86/tmphahro0qq.py", line 3
print "%d %d %f" %(a/b, a%b, a/b)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s416094857 | p02399 | u885889402 | 1453364835 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | import math
a=int(input())
L = 2*math.pi*a
s = a*a*math.pi
print("%.6f"%(L),"%.6f"%(s)) | Traceback (most recent call last):
File "/tmp/tmpei9p3kpx/tmp9kdfm3mn.py", line 3, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s398080251 | p02399 | u828153094 | 1453397954 | Python | Python | py | Runtime Error | 0 | 0 | 113 | a, b, c = map(int, raw_input().split())
d = a / b
r = a % b
f = float(a) / float(b)
print '%d %d %.6f' %(d, r, f) | File "/tmp/tmprpo06f_0/tmpbcdvxu3j.py", line 5
print '%d %d %.6f' %(d, r, f)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s030134807 | p02399 | u828153094 | 1453398073 | Python | Python | py | Runtime Error | 0 | 0 | 111 | a, b, c = map(int, raw_input().split())
d = a / b
r = a % b
f = float(a) / float(b)
print '%d %d %f' %(d, r, f) | File "/tmp/tmp5vnfzkq1/tmp5af57bpt.py", line 5
print '%d %d %f' %(d, r, f)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s701901507 | p02399 | u828153094 | 1453398232 | Python | Python | py | Runtime Error | 0 | 0 | 123 | a, b, c = map(int, raw_input().split())
d = a / b
r = a % b
A = float(a)
B = float(b)
f = A / B
print '%d %d %f' %(d, r, f) | File "/tmp/tmplay10s4g/tmpy1_wo7_2.py", line 7
print '%d %d %f' %(d, r, f)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s773371141 | p02399 | u619765879 | 1453440238 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a, b = map(int, raw_input().split())
print '%d %d %.6f' % (a/b, a%b, double(a/b)) | File "/tmp/tmpswvjq71t/tmp3ioxdkh8.py", line 2
print '%d %d %.6f' % (a/b, a%b, double(a/b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s896027477 | p02399 | u619765879 | 1453440335 | Python | Python | py | Runtime Error | 0 | 0 | 79 | a, b = map(int, raw_input().split())
print '%d %d %f' % (a/b, a%b, (double)a/b) | File "/tmp/tmpugk4kw3u/tmpjggfwt5q.py", line 2
print '%d %d %f' % (a/b, a%b, (double)a/b)
^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s258260453 | p02399 | u532962080 | 1453783320 | Python | Python | py | Runtime Error | 0 | 0 | 71 | a,b = map(int, raw_input().split())
print a/b a%b "%.6f" % (a/float(b)) | File "/tmp/tmpo1ws9eeu/tmpox0m00ep.py", line 2
print a/b a%b "%.6f" % (a/float(b))
^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s452265769 | p02399 | u532962080 | 1453783392 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a,b = map(int, raw_input().split())
print "%d/%d %d%%d %.5f" % (a,b, a,b, a/float(b)) | File "/tmp/tmp285kk6yc/tmp5xaf9vyq.py", line 2
print "%d/%d %d%%d %.5f" % (a,b, a,b, a/float(b))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s032273547 | p02399 | u177295149 | 1453791011 | Python | Python | py | Runtime Error | 0 | 0 | 108 | a,b = map(int, raw_input().split())
d = int(a/b)
r = a%b
float(f) = float(a)/b
print '%d, %d, %f', d, r, f | File "/tmp/tmpjemkv30o/tmp96jv3i3_.py", line 4
float(f) = float(a)/b
^^^^^^^^
SyntaxError: cannot assign to function call here. Maybe you meant '==' instead of '='?
| |
s768792989 | p02399 | u563876281 | 1453818220 | Python | Python | py | Runtime Error | 0 | 0 | 91 | a,b=map(int, raw_input().split())
d=a/b
e=a%b
print ('%d %d %f' % (d,e,(float(a)/float(b))) | File "/tmp/tmpk_jlbpba/tmplwud0ghr.py", line 4
print ('%d %d %f' % (d,e,(float(a)/float(b)))
^
SyntaxError: '(' was never closed
| |
s433103477 | p02399 | u563876281 | 1453818233 | Python | Python | py | Runtime Error | 0 | 0 | 89 | a,b=map(int, raw_input().split())
d=a/b
e=a%b
print ('%d %d %f' % (d,e,float(a)/float(b)) | File "/tmp/tmp3ogdew24/tmp3kdbeode.py", line 4
print ('%d %d %f' % (d,e,float(a)/float(b))
^
SyntaxError: '(' was never closed
| |
s496315455 | p02399 | u563876281 | 1453818315 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a,b=map(int, raw_input().split())
c=a/b
d=a%b
e=float(a)/float(b)
print ('%d %d %f' % (c,d,e) | File "/tmp/tmpumknpovn/tmpynne2k0v.py", line 5
print ('%d %d %f' % (c,d,e)
^
SyntaxError: '(' was never closed
| |
s232509547 | p02399 | u682357930 | 1453861231 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a = input()
b = input()
q = a/b
r = a%b
q_f = float(a)/float(b)
print q,, r, q_f | File "/tmp/tmphnqc_io1/tmp3twuqsce.py", line 8
print q,, r, q_f
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s957544066 | p02399 | u682357930 | 1453861237 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a = input()
b = input()
q = a/b
r = a%b
q_f = float(a)/float(b)
print q,, r, q_f | File "/tmp/tmp645nw6vq/tmpqvrwcmpw.py", line 8
print q,, r, q_f
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s480020749 | p02399 | u682357930 | 1453861249 | Python | Python | py | Runtime Error | 0 | 0 | 80 | a = input()
b = input()
q = a/b
r = a%b
q_f = float(a)/float(b)
print q,r, q_f | File "/tmp/tmpos6_g1y7/tmp4430tmw0.py", line 8
print q,r, q_f
^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s609454423 | p02399 | u974554153 | 1454420519 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a,b = map(double, raw_input().split())
int x,y
double z
x=a/b
y=a%b
z=a/b
print x y z | File "/tmp/tmpcpv3w5pl/tmpcjoaucn2.py", line 2
int x,y
^
SyntaxError: invalid syntax
| |
s455237588 | p02399 | u852112234 | 1455781561 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | line = input()
i = []
for l in list:
i.append(int(l))
d = i[0] % i[1]
r = i[0] %% i[1]
f = i[0] % float(i[1])
print(d,r,f) | File "/tmp/tmp87tfnix2/tmpq_n1xzco.py", line 7
r = i[0] %% i[1]
^
SyntaxError: invalid syntax
| |
s756290361 | p02399 | u852112234 | 1455783408 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | line = input()
i =[]
for l in line:
i.append(int(l))
d = i[0] / i[1]
r = i[0] % i[1]
f = i[0] / float(i[1])
print(d,r,f)
| Traceback (most recent call last):
File "/tmp/tmph7_urtrg/tmpappnvm6d.py", line 1, in <module>
line = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s673469854 | p02399 | u852112234 | 1455783519 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | line = input()
i =[]
for l in line:
i.append(int(l))
d = i[0] // i[1]
r = i[0] % i[1]
f = i[0] / i[1]
print(d,r,f)
| Traceback (most recent call last):
File "/tmp/tmpx7_te3yr/tmpb1wud7uk.py", line 1, in <module>
line = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s553737064 | p02399 | u653239976 | 1456805877 | Python | Python | py | Runtime Error | 0 | 0 | 130 | #coding: UTF-8
l = raw_input().split()
a = int (l[0])
b = int (l[1])
c = int (l[2])
if a < b < c:
print "Yes"
else:
print"No" | File "/tmp/tmpssaoyl15/tmpha8nxb_k.py", line 9
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s741622888 | p02399 | u653239976 | 1456805922 | Python | Python | py | Runtime Error | 0 | 0 | 131 | #coding: UTF-8
l = raw_input().split()
a = int (l[0])
b = int (l[1])
c = float(l[2])
if a < b < c:
print "Yes"
else:
print"No" | File "/tmp/tmpqwdumx98/tmpy7j1y4it.py", line 9
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s054454790 | p02399 | u653239976 | 1456806276 | Python | Python | py | Runtime Error | 0 | 0 | 163 | #coding: UTF-8
l = input().split()
a = int(l[0])
b = int(l[1])
if 1 <= a and b <= 10*9:
d = a / b
r = a % b
f = float (a )/ b
print "%d %d %f" %(d, r, f) | File "/tmp/tmp6czrcyjw/tmpmfhb07aw.py", line 15
print "%d %d %f" %(d, r, f)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s753467676 | p02399 | u994049982 | 1458664013 | Python | Python | py | Runtime Error | 0 | 0 | 63 | a,b=map(int,input().split())
print("%d, %d, %f"%(a//b,a%b,a/b)) | Traceback (most recent call last):
File "/tmp/tmp36hfrnni/tmp5x8pulk0.py", line 1, in <module>
a,b=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s112655829 | p02399 | u869301406 | 1458810951 | Python | Python | py | Runtime Error | 0 | 0 | 93 | a,b = map(int,raw_input().split())
d=a/b
r=a%b
f=float(a)/float(b)
print "%d %d %f" % d,r,f | File "/tmp/tmpxzt3s_la/tmpdwfpueik.py", line 7
print "%d %d %f" % d,r,f
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s548947356 | p02399 | u130979865 | 1459555652 | Python | Python | py | Runtime Error | 0 | 0 | 102 | # -*- coding: utf-8 -*-
a, b = map(int, raw_input().split())
print "%d %d %f" %(a/b, a%b, (float)a/b) | File "/tmp/tmp4dha__qv/tmprqrknv9y.py", line 4
print "%d %d %f" %(a/b, a%b, (float)a/b)
^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s005736017 | p02399 | u077284614 | 1461238095 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = (double)a/b
print(d, r, f)
| File "/tmp/tmpf7h384ev/tmpt7ctxb9q.py", line 2
d = (int)a/b
^
SyntaxError: invalid syntax
| |
s201525654 | p02399 | u077284614 | 1461238131 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a, b = map(int,input().split())
d = a/b
r = a%b
f = (double)a/b
print(d, r, f)
| File "/tmp/tmphaxhzq8m/tmpn6g_h4jv.py", line 4
f = (double)a/b
^
SyntaxError: invalid syntax
| |
s022372273 | p02399 | u077284614 | 1461238276 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %f",d,r,f)
| File "/tmp/tmppulc57y3/tmp6pynggn7.py", line 2
d = (int)a/b
^
SyntaxError: invalid syntax
| |
s618254329 | p02399 | u077284614 | 1461238305 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %f"%(d,r,f))
| File "/tmp/tmpelnjigkz/tmpxc7fkrgo.py", line 2
d = (int)a/b
^
SyntaxError: invalid syntax
| |
s343052415 | p02399 | u077284614 | 1461238359 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b = map(int,input().split())
d = (int)a/b
r = a%b
f = a/b
print("%d %d %f" %(d,r,f))
| File "/tmp/tmpns6ehkx9/tmpzah_tfs5.py", line 2
d = (int)a/b
^
SyntaxError: invalid syntax
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.