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
s013841248
p02399
u077284614
1461238454
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/tmpi6__umpj/tmpjugpk1lv.py", line 2 d = (int)a/b ^ SyntaxError: invalid syntax
s972646908
p02399
u077284614
1461238519
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("%s %s %f" %(d,r,f))
File "/tmp/tmpekejw96o/tmpz4pjt2kb.py", line 2 d = (int)a/b ^ SyntaxError: invalid syntax
s946303962
p02399
u077284614
1461238528
Python
Python3
py
Runtime Error
0
0
92
a, b = map(int,input().split()) d = (int)a/b r = a%b f = a/b print("%s %s %.5f" %(d,r,f))
File "/tmp/tmpg7kzc6zv/tmp4421gkwo.py", line 2 d = (int)a/b ^ SyntaxError: invalid syntax
s871953060
p02399
u077284614
1461238582
Python
Python3
py
Runtime Error
0
0
92
a, b = map(int,input().split()) d = (int)a/b r = a%b f = a/b print("%d %d %.5f" %(d,r,f))
File "/tmp/tmp7p__4qr7/tmppcqyj85l.py", line 2 d = (int)a/b ^ SyntaxError: invalid syntax
s321581195
p02399
u617990214
1461847046
Python
Python
py
Runtime Error
0
0
246
l=raw_input() k=l.split() a=0.0 b=0.0 a=int(k[0]) b=int(k[1]) # print int((a-(a%b))/b), print int(a%b), a*=1.0 b*=1.0 if b==1: print a*1.0 else: if a/b>0.0000002: print a/b else: print 0.00000001.99999982
File "/tmp/tmpvd9_svkd/tmpbejv3zan.py", line 8 print int((a-(a%b))/b), ^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s297894630
p02399
u070968430
1464672665
Python
Python3
py
Runtime Error
0
0
200
a, b = map(int, input().split()) if a < 0 or b < 0: break elif a > 10 **9 or b > 10 **9: break else: d = int(a/b) r = int(a%b) f = float(a/b) print(d, r, "{0:01.5f}".format(f))
File "/tmp/tmp3aow1ig4/tmp_7h7yy7g.py", line 3 break ^^^^^ SyntaxError: 'break' outside loop
s522734234
p02399
u070968430
1464672954
Python
Python3
py
Runtime Error
0
0
254
while True: a, b = map(int, input().split()) if a <= 0 or b <= 0: break elif a > 10 **9 or b > 10 **9: break else: d = int(a/b) r = int(a%b) f = float(a/b) print(d, r, "{0:01.5f}".format(f))
Traceback (most recent call last): File "/tmp/tmpfv9_xs01/tmpgptfmwqn.py", line 2, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s239833983
p02399
u756468156
1466497238
Python
Python3
py
Runtime Error
0
0
67
a, b = map(int,input().split()) print(a / / b, a % b, float(a / b))
File "/tmp/tmp91bzkbuz/tmpgw43_0mt.py", line 2 print(a / / b, a % b, float(a / b)) ^ SyntaxError: invalid syntax
s447846219
p02399
u756468156
1466497325
Python
Python3
py
Runtime Error
0
0
67
a, b = map(int,input().split()) print(a / / b, a % b, float(a / b))
File "/tmp/tmpxi5r8t4n/tmp3irwqqyr.py", line 2 print(a / / b, a % b, float(a / b)) ^ SyntaxError: invalid syntax
s356033453
p02399
u514853553
1467034487
Python
Python3
py
Runtime Error
0
0
78
r=float(input()) string=str(r**2*3.141592)+" "+str(2*3.141592*r) print(string)
Traceback (most recent call last): File "/tmp/tmpif1x1muf/tmp5xoxm78y.py", line 1, in <module> r=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s292412273
p02399
u204883389
1469598755
Python
Python3
py
Runtime Error
0
0
148
def main(): (a, b) = [int(i) for i in input().split()] print "%d %d %f" %(a / b, a % b, a / float(b)) if __name__ == '__main__': main()
File "/tmp/tmprcwumdm1/tmpiucv7wkx.py", line 3 print "%d %d %f" %(a / b, a % b, a / float(b)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s990115737
p02399
u757827098
1469599322
Python
Python3
py
Runtime Error
0
0
84
a,b =[int(i) for i in input().split()] d = a / b r = a % b f = a // b print(d r f)
File "/tmp/tmp9fnd4oyk/tmpm8sqym3r.py", line 7 print(d r f) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s911920432
p02399
u369313788
1469599732
Python
Python3
py
Runtime Error
0
0
112
a, b = [int(i) for i in input().split()] d = a // b r = a % b f = a / b print("{0} {1} {2:.5f}".format(d.r.f))
Traceback (most recent call last): File "/tmp/tmp0v6f24d9/tmpzl6o98jo.py", line 1, in <module> a, b = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s951334734
p02399
u628732336
1469599745
Python
Python3
py
Runtime Error
0
0
113
a, b = [int(i) for i in input().split()] d = a // b r = a % b f = a / b print("{0} {1} {2:.5f}".format(d, r, f)
File "/tmp/tmpq9fk1ejq/tmpx3beyfcy.py", line 7 print("{0} {1} {2:.5f}".format(d, r, f) ^ SyntaxError: '(' was never closed
s219330972
p02399
u600195957
1469599827
Python
Python3
py
Runtime Error
0
0
117
a, b, c = [int(i) for i in input().split()] d = a // b r = a % b f = a / b print("{0} {1} {2:.5f}".format(d, r, f))
Traceback (most recent call last): File "/tmp/tmpy646bn41/tmp4cqeoifa.py", line 1, in <module> a, b, c = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s766204830
p02399
u644636020
1469599884
Python
Python3
py
Runtime Error
0
0
113
a, b = [int(i) for i in input().split()] d = a // b r = a % b f = a / b print("{0} {1} {2:.5f}.format(d, r, f))
File "/tmp/tmp7763fb7s/tmp3802ozxg.py", line 7 print("{0} {1} {2:.5f}.format(d, r, f)) ^ SyntaxError: unterminated string literal (detected at line 7)
s125272004
p02399
u382316013
1469599894
Python
Python3
py
Runtime Error
0
0
114
a, b = [int(i) for i in input().split()] d = a // b r = a % b r = a / b print("{0} {1} {2:.5f}".format(d, r, f))
Traceback (most recent call last): File "/tmp/tmpcxy05ubb/tmpbpaczqkk.py", line 1, in <module> a, b = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s357765314
p02399
u587193722
1469601444
Python
Python3
py
Runtime Error
0
0
70
a, b = [int(i) for in input().split()] print(a//b,int(a%b),float(a%b))
File "/tmp/tmpaflbdf0r/tmppd2ebtru.py", line 1 a, b = [int(i) for in input().split()] ^^ SyntaxError: invalid syntax
s001144581
p02399
u315554638
1474289288
Python
Python
py
Runtime Error
0
0
112
# -*- coding: utf-8 -*- a = input() b = input() d = a / b; r = a % b; f = a / b; print int(d), int(r), float(f)
File "/tmp/tmpk86rdyh2/tmppt59u3ca.py", line 6 print int(d), int(r), float(f) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s880586747
p02399
u315554638
1474289399
Python
Python
py
Runtime Error
0
0
103
a = input() b = input() d = a / b; r = a % b; f = a / b; print '%d %d %.5f' %(int(d), int(r), float(f))
File "/tmp/tmpdp5bhdrf/tmpr9806wka.py", line 4 print '%d %d %.5f' %(int(d), int(r), float(f)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s596521809
p02399
u315554638
1474289487
Python
Python
py
Runtime Error
0
0
90
a = input() b = input() d = a / b r = a % b print '%d %d %.5f' %(int(d), int(r), float(f))
File "/tmp/tmpz28p8p9o/tmpp0le8xgq.py", line 5 print '%d %d %.5f' %(int(d), int(r), float(f)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s772960923
p02399
u315554638
1474289506
Python
Python
py
Runtime Error
0
0
80
a = input() b = input() d = a / b r = a % b print '%d %d %.5f' %(d, r, float(f))
File "/tmp/tmpoktvhc74/tmpxpqdkcyy.py", line 5 print '%d %d %.5f' %(d, r, float(f)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s121326493
p02399
u315554638
1474289817
Python
Python3
py
Runtime Error
0
0
90
a = input() b = input() d = a / b r = a % b print '%d %d %.5f' %(int(d), int(r), float(f))
File "/tmp/tmpt17p5aw9/tmpz_2cjhi7.py", line 5 print '%d %d %.5f' %(int(d), int(r), float(f)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s621596331
p02399
u672487238
1475854971
Python
Python
py
Runtime Error
0
0
112
list = map(int, raw_input().split()) print list[0] / list[1], list[0] % list[1], "&.5f" %(1.0*list[0] / list[1])
File "/tmp/tmpapht_38d/tmpsrrz32ji.py", line 2 print list[0] / list[1], list[0] % list[1], "&.5f" %(1.0*list[0] / list[1]) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s389484293
p02399
u175111751
1477477056
Python
Python3
py
Runtime Error
0
0
84
a,b = [int(e) for e in input().split()] print('{0} {1} {:f}'.format(a//b, a%b, a/b))
Traceback (most recent call last): File "/tmp/tmp_1vksc5q/tmpkjix212j.py", line 1, in <module> a,b = [int(e) for e in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s528218942
p02399
u831244171
1477492446
Python
Python
py
Runtime Error
0
0
116
m = map(int,raw_input().split()) a = m[0] b = m[1] d = a / b r = a % b f = l.0 * a / b print int(d),int(r),long(f)
File "/tmp/tmpojnnt4v5/tmp4xoucnyb.py", line 7 f = l.0 * a / b ^^ SyntaxError: invalid syntax
s178745300
p02399
u831244171
1477492456
Python
Python
py
Runtime Error
0
0
116
m = map(int,raw_input().split()) a = m[0] b = m[1] d = a / b r = a % b f = l.0 * a / b print int(d),int(r),long(f)
File "/tmp/tmp56h59rev/tmp6f2t63tl.py", line 7 f = l.0 * a / b ^^ SyntaxError: invalid syntax
s658532447
p02399
u831244171
1477492468
Python
Python
py
Runtime Error
0
0
117
m = map(int,raw_input().split()) a = m[0] b = m[1] d = a / b r = a % b f = l.0 * a / b print int(d),int(r),float(f)
File "/tmp/tmphx4e95fv/tmpmmi7pndy.py", line 7 f = l.0 * a / b ^^ SyntaxError: invalid syntax
s294668470
p02399
u508732591
1478247249
Python
Python3
py
Runtime Error
0
0
143
a,b = map(int,input().split()) 2 print("{0} {1} {2:0f}".format(a//b,a%b,a/b))
File "/tmp/tmpdwe9ncwm/tmpgw7epwmt.py", line 2 2 print("{0} {1} {2:0f}".format(a//b,a%b,a/b)) IndentationError: unexpected indent
s254401685
p02399
u186082958
1480501265
Python
Python3
py
Runtime Error
0
0
48
a,b=map(int,input(),split()) print(a//b,a%b,a/b)
Traceback (most recent call last): File "/tmp/tmprrw403g4/tmpaty7y25_.py", line 1, in <module> a,b=map(int,input(),split()) ^^^^^^^ EOFError: EOF when reading a line
s475786498
p02399
u250482563
1480566539
Python
Python
py
Runtime Error
0
0
80
a, b = map (int, input().split()) d = a // b r = a % b f = a / b print (d, r, f)
Traceback (most recent call last): File "/tmp/tmpvewja7pq/tmph_wrq78u.py", line 1, in <module> a, b = map (int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s774424035
p02399
u234837959
1482330738
Python
Python3
py
Runtime Error
0
0
226
list1 = input().split(' ') list1 = list(map(int, list1)) a = list1[0] b = list1[1] ans1 = a // b ans1 = str(ans1) ans2 = a % b ans2 = str(ans2) ans3 = a / b ans3 = str(ans3) print("{0} {1} {2:.5f}".format(ans1, ans2, ans3))
Traceback (most recent call last): File "/tmp/tmpdsm2pw76/tmpf8avzba9.py", line 1, in <module> list1 = input().split(' ') ^^^^^^^ EOFError: EOF when reading a line
s088186782
p02399
u019678978
1483459399
Python
Python3
py
Runtime Error
0
0
127
a,b = list(map(int,input().split())) d = int(a / b) r = int(a % b) f = float(a / b) print("{0:d} {1:d} {2:d}".format( d, r, f))
Traceback (most recent call last): File "/tmp/tmprfmm32c2/tmp_z2o1nek.py", line 1, in <module> a,b = list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s386323686
p02399
u276050131
1484816869
Python
Python3
py
Runtime Error
0
0
141
a,b = input().split() a = int(a) b = int(b) d = a // b r = a % b f = a / b fmt = "{v} {c} {n}" s = fmt. format(v = d,c = r,n = f) print(s)
File "/tmp/tmph0nmzzm_/tmpl3c5_45_.py", line 11 s = fmt. ^ SyntaxError: invalid syntax
s949980923
p02399
u276050131
1484817069
Python
Python3
py
Runtime Error
0
0
141
a,b = input().split() a = int(a) b = int(b) d = a // b r = a % b f = a / b fmt = "{v} {c} {n}" s = fmt. format(v = d,c = r,n = f) print(s)
File "/tmp/tmpb55oe3df/tmpd_nxtkqw.py", line 11 s = fmt. ^ SyntaxError: invalid syntax
s802281362
p02399
u519227872
1485276351
Python
Python3
py
Runtime Error
0
0
93
a,b = map(int,raw_input().split(" ")) f = a / b d,r = divmod(a,b) print ("%s %s %s" %(d,r,f))
Traceback (most recent call last): File "/tmp/tmp1erv9gsi/tmpe_qkhj9d.py", line 1, in <module> a,b = map(int,raw_input().split(" ")) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s249292593
p02399
u519227872
1485276508
Python
Python3
py
Runtime Error
0
0
99
a,b = map(int,raw_input().split(" ")) d = a / b r = a % b f = a * 1.0 / b print "%s %s %s" %(d,r,f)
File "/tmp/tmpjagb0ejd/tmpva2z60k1.py", line 5 print "%s %s %s" %(d,r,f) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s210118267
p02399
u519227872
1485276698
Python
Python3
py
Runtime Error
0
0
93
a,b = map(int,raw_input().split(" ")) f = a / b d,r = divmod(a,b) print ("%s %s %s" %(d,r,f))
Traceback (most recent call last): File "/tmp/tmp29xk526j/tmphutcc8co.py", line 1, in <module> a,b = map(int,raw_input().split(" ")) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s499214823
p02399
u519227872
1485278762
Python
Python3
py
Runtime Error
0
0
90
a,b = map(int,raw_input().split(" ")) d,r = divmod(a,b) f = a/b print ("%s %s %s"%(d,r,f))
Traceback (most recent call last): File "/tmp/tmp2a5fw5v7/tmpt8l6rtg1.py", line 1, in <module> a,b = map(int,raw_input().split(" ")) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s031101148
p02399
u548155360
1487151458
Python
Python3
py
Runtime Error
0
0
113
a, b = map(int,input().split()) d = a // b r = a % b f = float(a) / float(b) print("{} {} {0:f}".format(d,r,f))
Traceback (most recent call last): File "/tmp/tmp2v1uk0a0/tmp_y222q1m.py", line 1, in <module> a, b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s896313977
p02399
u553058997
1487755787
Python
Python3
py
Runtime Error
0
0
70
a,b,c = list(map(int, input().split())) print(int(a/b), a % b, a / b)
Traceback (most recent call last): File "/tmp/tmpipqm2pol/tmp_lt918c1.py", line 1, in <module> a,b,c = list(map(int, input().split())) ^^^^^^^ EOFError: EOF when reading a line
s026570895
p02399
u024715419
1488165410
Python
Python3
py
Runtime Error
0
0
69
a,b = map(int,input().split())) print("%d %d %.5f\n" %(a//b,a%b,a/b))
File "/tmp/tmppfo4uap8/tmpd7vvr9n1.py", line 1 a,b = map(int,input().split())) ^ SyntaxError: unmatched ')'
s441468085
p02399
u024715419
1488165439
Python
Python3
py
Runtime Error
0
0
68
a,b = map(int,input().split())) print("%d %d %.5f\n"%(a//b,a%b,a/b))
File "/tmp/tmpciwnovjl/tmp_wub3om1.py", line 1 a,b = map(int,input().split())) ^ SyntaxError: unmatched ')'
s883818198
p02399
u024715419
1488165448
Python
Python3
py
Runtime Error
0
0
68
a,b = map(int,input().split())) print('%d %d %.5f\n'%(a//b,a%b,a/b))
File "/tmp/tmpdy7r9ocx/tmpk8j2zaio.py", line 1 a,b = map(int,input().split())) ^ SyntaxError: unmatched ')'
s710236493
p02399
u921541953
1489211066
Python
Python3
py
Runtime Error
0
0
106
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print('{0} {1} [2:0.05f}').format(d, r, f)
Traceback (most recent call last): File "/tmp/tmp_zb6ady8/tmpt89wnz32.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s611641174
p02399
u921541953
1489211103
Python
Python3
py
Runtime Error
0
0
105
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print('{0} {1} [2:0.5f}').format(d, r, f)
Traceback (most recent call last): File "/tmp/tmp0n3souu2/tmp6jo1x_sa.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s133551617
p02399
u921541953
1489211168
Python
Python3
py
Runtime Error
0
0
105
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print('{0} {1} [2:0.5f}'.format(d, r, f))
Traceback (most recent call last): File "/tmp/tmp3vllajbw/tmpmnsay_wx.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s081601722
p02399
u921541953
1489211209
Python
Python3
py
Runtime Error
0
0
112
a, b = map(int, input().split()) d = a // b r = a % b f = float(a / b) print('{0} {1} [2:0.5f}'.format(d, r, f))
Traceback (most recent call last): File "/tmp/tmpcxj_20n1/tmpy4hrk0fx.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s521218643
p02399
u756958775
1490018389
Python
Python3
py
Runtime Error
0
0
90
[a, b] = list(map(int, input().split())) print(a//b) print(a%b) print({:.5f}.format(a/b))
File "/tmp/tmpwsd9hg0o/tmp1prt_6rj.py", line 5 print({:.5f}.format(a/b)) ^ SyntaxError: invalid decimal literal
s401361906
p02399
u462831976
1490780314
Python
Python3
py
Runtime Error
0
0
84
a, b = list(map(int, input().split()) d = a // b r = a % b f = a / b print(d, r, f
File "/tmp/tmpu50bb96k/tmpkjk19lix.py", line 1 a, b = list(map(int, input().split()) ^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s100736909
p02399
u462831976
1490780324
Python
Python3
py
Runtime Error
0
0
85
a, b = list(map(int, input().split()) d = a // b r = a % b f = a / b print(d, r, f)
File "/tmp/tmpov75gsg9/tmpavvex7kl.py", line 1 a, b = list(map(int, input().split()) ^ SyntaxError: '(' was never closed
s936361648
p02399
u606989659
1491302884
Python
Python3
py
Runtime Error
0
0
97
a,b = map(int,input().split()) d = a / b r = a % b f = float(a) / b print({},{},{}.format(d,r,f))
Traceback (most recent call last): File "/tmp/tmp99c9snu1/tmpfa_s8kzb.py", line 1, in <module> a,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s134184989
p02399
u489071923
1492940059
Python
Python3
py
Runtime Error
0
0
121
import math nums = list(map(int , input().split()) a = nums[0] b = nums[1] print(a // b) print(a % b) print(float(a / b))
File "/tmp/tmpcbdpb7ym/tmpm9xi53d3.py", line 2 nums = list(map(int , input().split()) ^ SyntaxError: '(' was never closed
s486406729
p02399
u213265973
1494249783
Python
Python3
py
Runtime Error
0
0
75
a, b = [int(i) in input().split(" ")] print(int(a/b), a%b, a/b, sep = " ")
Traceback (most recent call last): File "/tmp/tmpn_pg24ep/tmp8o2mkfz5.py", line 1, in <module> a, b = [int(i) in input().split(" ")] ^ NameError: name 'i' is not defined. Did you mean: 'id'?
s611522942
p02399
u213265973
1494249833
Python
Python3
py
Runtime Error
0
0
82
a, b = [int(i) in input().split(" ")] print(int(a/b), a%b, float(a/b), sep = " ")
Traceback (most recent call last): File "/tmp/tmprhjitl4c/tmp4ena7h47.py", line 1, in <module> a, b = [int(i) in input().split(" ")] ^ NameError: name 'i' is not defined. Did you mean: 'id'?
s457079634
p02399
u213265973
1494250173
Python
Python3
py
Runtime Error
0
0
99
a, b = [int(i) in input().split(" ")] c = "{0:.f8}".format(a/b) print(int(a/b), a%b, c, sep = " ")
File "/tmp/tmpkn_4snop/tmpsv_26ipf.py", line 2 c = "{0:.f8}".format(a/b) ^ SyntaxError: invalid non-printable character U+0008
s598887832
p02399
u213265973
1494250208
Python
Python3
py
Runtime Error
0
0
99
a, b = [int(i) in input().split(" ")] c = "{0:.f6}".format(a/b) print(int(a/b), a%b, c, sep = " ")
File "/tmp/tmpw0c9cbhn/tmplr0x7ode.py", line 2 c = "{0:.f6}".format(a/b) ^ SyntaxError: invalid non-printable character U+0008
s040772292
p02399
u213265973
1494250284
Python
Python3
py
Runtime Error
0
0
98
a, b = [int(i) in input().split(" ")] c = a/b print(int(a/b), a%b, "{0:.6f}.format(c), sep = " ")
File "/tmp/tmpaji90m_k/tmp66aojtns.py", line 2 c = a/b ^ SyntaxError: invalid non-printable character U+0008
s703751652
p02399
u213265973
1494250411
Python
Python3
py
Runtime Error
0
0
98
a, b = [int(i) in input().split(" ")] c = a/b print(int(a/b), a%b, "{0:.5f}.format(c), sep = " ")
File "/tmp/tmpa0jnnhrs/tmpg4ncvm7v.py", line 2 c = a/b ^ SyntaxError: invalid non-printable character U+0008
s070058542
p02399
u213265973
1494250421
Python
Python3
py
Runtime Error
0
0
99
a, b = [int(i) in input().split(" ")] c = a/b print(int(a/b), a%b, "{0:.5f}".format(c), sep = " ")
File "/tmp/tmpew3ax1t6/tmplzjegu6l.py", line 2 c = a/b ^ SyntaxError: invalid non-printable character U+0008
s738633381
p02399
u213265973
1494250450
Python
Python3
py
Runtime Error
0
0
99
a, b = [int(i) in input().split(" ")] c = a/b print(int(a/b), a%b, "{0:.6f}".format(c), sep = " ")
File "/tmp/tmpyd14ue_u/tmpdcr1wb46.py", line 2 c = a/b ^ SyntaxError: invalid non-printable character U+0008
s076491280
p02399
u213265973
1494250458
Python
Python3
py
Runtime Error
0
0
99
a, b = [int(i) in input().split(" ")] c = a/b print(int(a/b), a%b, "{0:.5f}".format(c), sep = " ")
File "/tmp/tmpu2u3y_x2/tmp9h6lc3m8.py", line 2 c = a/b ^ SyntaxError: invalid non-printable character U+0008
s453616104
p02399
u213265973
1494250628
Python
Python3
py
Runtime Error
0
0
90
a, b = [int(i) in input().split(" ")] c = a / b print(int(a/b), a%b, "{0:.5f}".format(c))
File "/tmp/tmp7eh986pl/tmp4wjkctwa.py", line 2 c = a / b ^ SyntaxError: invalid non-printable character U+0008
s246973267
p02399
u213265973
1494252229
Python
Python
py
Runtime Error
0
0
120
a, b = [int(i) for i in input().split(" ")] num1 = int(a / b) num2 = a % b num3 = "{:.5f}".format(a / b) print(a, b, c)
Traceback (most recent call last): File "/tmp/tmpukiwmkvz/tmpofsigkiu.py", line 1, in <module> a, b = [int(i) for i in input().split(" ")] ^^^^^^^ EOFError: EOF when reading a line
s941601271
p02399
u213265973
1494252297
Python
Python3
py
Runtime Error
0
0
120
a, b = [int(i) for i in input().split(" ")] num1 = int(a / b) num2 = a % b num3 = "{:.5f}".format(a / b) print(a, b, c)
Traceback (most recent call last): File "/tmp/tmpujkyvnut/tmpqxj9qynu.py", line 1, in <module> a, b = [int(i) for i in input().split(" ")] ^^^^^^^ EOFError: EOF when reading a line
s089741454
p02399
u625806423
1495810637
Python
Python3
py
Runtime Error
0
0
98
a,b = map(int,input().split()) d = a // b r = a % b f = a / b print('{} {} {.5f}'.format(d,r,f))
Traceback (most recent call last): File "/tmp/tmpxyfkjfvt/tmpbwsv7pqf.py", line 1, in <module> a,b = map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s175114747
p02399
u999594662
1496226137
Python
Python3
py
Runtime Error
0
0
96
a,b=map(int, input().split()) d = a/b r = a%b f = a/b print(???{0} {1} {2:f}???.format(d, r, f))
File "/tmp/tmpwdwfx_nk/tmpnid9kvbp.py", line 5 print(???{0} {1} {2:f}???.format(d, r, f)) ^ SyntaxError: invalid syntax
s151259986
p02399
u999594662
1496226368
Python
Python3
py
Runtime Error
0
0
110
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print(???{0:d} {1:d} {2:f}???.format(d, r, f))
File "/tmp/tmpq_6qnng1/tmpalp3ae6p.py", line 5 print(???{0:d} {1:d} {2:f}???.format(d, r, f)) ^ SyntaxError: invalid syntax
s155794429
p02399
u440180827
1496886474
Python
Python3
py
Runtime Error
0
0
79
a, b = map(int, input().split()) print('{0} {1} {:.5f}'.format(a//b, a%b, a/b))
Traceback (most recent call last): File "/tmp/tmpi_orlbxs/tmpsneb5x61.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s728925422
p02399
u821624310
1497304171
Python
Python3
py
Runtime Error
0
0
85
a, b = map(int, input().split()) f = a / b print(int(a / b), a % b, f"{a / b : .5f}")
Traceback (most recent call last): File "/tmp/tmp12di4uwc/tmp8mczhfok.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s456906266
p02399
u821624310
1497304429
Python
Python3
py
Runtime Error
0
0
85
a, b = map(int, input().split()) f = a / b print(int(a / b), a % b, f"{a / b : .5f}")
Traceback (most recent call last): File "/tmp/tmpvunj_du1/tmp5fymt9g3.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s976091006
p02399
u248424983
1499921079
Python
Python3
py
Runtime Error
0
0
111
(a, b) = [int(i) for i in input().split(' ')] print( repr(a // b) +" "+ repr(a % b) +" "+ ('%0.5f' % (a / b))
File "/tmp/tmpgjtjoj8u/tmpteh08voq.py", line 2 print( repr(a // b) +" "+ repr(a % b) +" "+ ('%0.5f' % (a / b)) ^ SyntaxError: '(' was never closed
s745816767
p02399
u663910047
1500126588
Python
Python3
py
Runtime Error
0
0
57
a,b,c = map(int, input().split()) print(int(a/b),a%b,a/b)
Traceback (most recent call last): File "/tmp/tmp54pdkyei/tmpy9a_fy_2.py", line 1, in <module> a,b,c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s850247533
p02399
u914146430
1500270936
Python
Python3
py
Runtime Error
0
0
37
print(a//b,a%b,"{0:.5f}".format(a/b))
Traceback (most recent call last): File "/tmp/tmpiscg4lej/tmp4v5pa5tx.py", line 1, in <module> print(a//b,a%b,"{0:.5f}".format(a/b)) ^ NameError: name 'a' is not defined
s820881853
p02399
u853619096
1500310287
Python
Python3
py
Runtime Error
0
0
80
a,b=map(int,input().split()) d=a%b r=a%b-d f=flort(r) print("{} {} {}".format())
Traceback (most recent call last): File "/tmp/tmp3g8qcn5q/tmpraein6wj.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s963677103
p02399
u853619096
1500310361
Python
Python3
py
Runtime Error
0
0
81
a,b=map(int,input().split()) d=a//b r=a%b f=float(a/b) print("{} {} {}".format())
Traceback (most recent call last): File "/tmp/tmpscm9oix1/tmpnfl1rkxg.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s629356536
p02399
u853619096
1500310671
Python
Python3
py
Runtime Error
0
0
72
a,b=map(int,input().split()) d=a//b r=a%b f=float(a/b) print(f"{d r f}")
File "/tmp/tmpwctghv3l/tmpk4w289za.py", line 5 (d r f) ^^^ SyntaxError: f-string: invalid syntax. Perhaps you forgot a comma?
s236908536
p02399
u853619096
1500311721
Python
Python3
py
Runtime Error
0
0
76
a,b=map(int,input().split()) d=a//b r=a%b f=float(a/b) print(f"{d r f: f5}")
File "/tmp/tmp6h1dulle/tmp8en1uyw6.py", line 5 (d r f) ^^^ SyntaxError: f-string: invalid syntax. Perhaps you forgot a comma?
s795583432
p02399
u350064373
1500469761
Python
Python3
py
Runtime Error
0
0
89
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print(d,r,{0:.5f}.format)
File "/tmp/tmpyvjunv0j/tmpxha06kfy.py", line 5 print(d,r,{0:.5f}.format) ^ SyntaxError: invalid decimal literal
s288010113
p02399
u350064373
1500470067
Python
Python3
py
Runtime Error
0
0
94
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print(d,r,"{0:.5f}".format)(f)
Traceback (most recent call last): File "/tmp/tmpghgp91dp/tmpxe1rfz08.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s761572501
p02399
u050103511
1500512373
Python
Python3
py
Runtime Error
0
0
104
a,b = [int(x) for x in input().split()] d = a // b r = a % b f = a / b print("{0} {1} {2}".format(d,r,f)
File "/tmp/tmpkmkz4gzi/tmp03g356ey.py", line 5 print("{0} {1} {2}".format(d,r,f) ^ SyntaxError: '(' was never closed
s110518725
p02399
u050103511
1500512384
Python
Python3
py
Runtime Error
0
0
105
a,b = [int(x) for x in input().split()] d = a // b r = a % b f = a / b print("{0} {1} {2}".format(d,r,f)}
File "/tmp/tmp3mnlm8f9/tmpq542itg4.py", line 5 print("{0} {1} {2}".format(d,r,f)} ^ SyntaxError: closing parenthesis '}' does not match opening parenthesis '('
s082802480
p02399
u447009770
1500522794
Python
Python
py
Runtime Error
0
0
87
### 20.07.2017 x = [] a, b = map(int, input().split()) print(int(a/b), a%b, float(a/b))
Traceback (most recent call last): File "/tmp/tmp8pepjt1p/tmpkm4j4d0s.py", line 3, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s078524574
p02399
u043639882
1500591214
Python
Python3
py
Runtime Error
0
0
73
a,b=map(int,input().split()) d=int(a/b) r=a%b f=a/b print(d,r,f,sep(" "))
Traceback (most recent call last): File "/tmp/tmp73g3y_3l/tmptziutaeh.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s228958569
p02399
u043639882
1500591299
Python
Python3
py
Runtime Error
0
0
78
a,b=map(int,input().split()) d=int(a/b) r=int(a%b) f=a/b print(d,r,f,sep(" "))
Traceback (most recent call last): File "/tmp/tmp0nbknaud/tmp77egpvpk.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s998234457
p02399
u043639882
1500591534
Python
Python3
py
Runtime Error
0
0
74
a,b=map(int,input().split()) d=a//b r=int(a%b) f=a/b print(d,r,f,sep(" "))
Traceback (most recent call last): File "/tmp/tmp1iyu6ehm/tmpjs9_v313.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s227287021
p02399
u888737393
1500699289
Python
Python3
py
Runtime Error
0
0
82
a, b = list(map(int, input().split)) d = int(a/b) r = a%b f = a/b print(d, r, f)
Traceback (most recent call last): File "/tmp/tmp83a7csfr/tmpc_uilrbw.py", line 1, in <module> a, b = list(map(int, input().split)) ^^^^^^^ EOFError: EOF when reading a line
s667931784
p02399
u725841747
1502034871
Python
Python3
py
Runtime Error
0
0
113
i=list(map(int,input().split(" "))) print("{0} {1} {2:0.5f}".format(i[0]//i[1],i[0]%i[1],float(i[0])/float(i[1]))
File "/tmp/tmp41sz93oe/tmpgszjymao.py", line 2 print("{0} {1} {2:0.5f}".format(i[0]//i[1],i[0]%i[1],float(i[0])/float(i[1])) ^ SyntaxError: '(' was never closed
s914822475
p02399
u618743706
1502083975
Python
Python3
py
Runtime Error
0
0
257
import math def f(a,b): if a>=1 and b<=10**9: d = math.floor(a/b) r = a%b f = float(a/b) print(d,r,"{0:.5f}".format(f)) else: print("error") a = int(input("enter the first number")) b = int(input("enter the second number")) f(a,b)
Traceback (most recent call last): File "/tmp/tmpcv7vx2ho/tmp69_x58nf.py", line 12, in <module> a = int(input("enter the first number")) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ EOFError: EOF when reading a line
enter the first number
s781508502
p02399
u744121389
1502422560
Python
Python3
py
Runtime Error
0
0
93
a,b= map(int,input().split()) r = a % b F = a / b f = round(F,5) d = f - r print str(d,r,f)
File "/tmp/tmppqn1ee7t/tmp2oyajs99.py", line 8 print str(d,r,f) ^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s951406529
p02399
u744121389
1502423089
Python
Python3
py
Runtime Error
0
0
98
a,b= map(int,input().split()) r = a % b F = a / b f = "{0:.5f}".format F d = F - r print (d,r,f)
File "/tmp/tmp6kzsue6q/tmp53aeq8jk.py", line 5 f = "{0:.5f}".format F ^ SyntaxError: invalid syntax
s045130312
p02399
u744121389
1502423151
Python
Python3
py
Runtime Error
0
0
97
a,b= map(int,input().split()) r = a % b F = a / b f = "{0:.5f}".formatF d = F - r print (d,r,f)
Traceback (most recent call last): File "/tmp/tmp9s0c50ga/tmp7v96e4hx.py", line 1, in <module> a,b= map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s989436336
p02399
u283452598
1503042949
Python
Python3
py
Runtime Error
0
0
96
x=list(map(int,input().split())) a,b,c=x[0],x[1],x[2] print(str(a//b)+" "+str(a%b)+" "+str(a/b))
Traceback (most recent call last): File "/tmp/tmp5uhvz467/tmp3dr2e_si.py", line 1, in <module> x=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s945262446
p02399
u283452598
1503043136
Python
Python3
py
Runtime Error
0
0
99
x=list(map(int,input().split())) a,b= x[0],x[1] print(str(a//b)+" "+str(a%b)+" {0:.6f}.format(a/b)"
File "/tmp/tmp23sybul7/tmp_0y7ycl4.py", line 3 print(str(a//b)+" "+str(a%b)+" {0:.6f}.format(a/b)" ^ SyntaxError: '(' was never closed
s070396192
p02399
u283452598
1503043271
Python
Python3
py
Runtime Error
0
0
99
x=list(map(int,input().split())) a,b= x[0],x[1] print(str(a//b)+" "+str(a%b)+" {0:06f}.format(a/b)"
File "/tmp/tmpdbkc74gj/tmp5f4gahbw.py", line 3 print(str(a//b)+" "+str(a%b)+" {0:06f}.format(a/b)" ^ SyntaxError: '(' was never closed
s623127927
p02399
u316697096
1503149104
Python
Python
py
Runtime Error
0
0
82
a,b= map(int,raw_input().split()) d=a/b r=a%b f=float(a/b) print %d,%d,%d,%(d,r,f)
File "/tmp/tmpb89rchlk/tmpojeb7ad3.py", line 5 print %d,%d,%d,%(d,r,f) ^ SyntaxError: invalid syntax
s252145966
p02399
u316697096
1503149304
Python
Python
py
Runtime Error
0
0
82
a,b= map(int,raw_input().split()) d=a/b r=a%b f=float(a/b) print %d,%d,%f,%(d,r,f)
File "/tmp/tmpvkglshbm/tmp5nhk1yax.py", line 5 print %d,%d,%f,%(d,r,f) ^ SyntaxError: invalid syntax
s794685329
p02399
u544943822
1503748817
Python
Python
py
Runtime Error
0
0
79
a, b = map(int. raw_input().split()) f = a/b print(a/b a%b {:.5f}.format(f))
File "/tmp/tmpbqztlzf1/tmplkm94z2p.py", line 3 print(a/b a%b {:.5f}.format(f)) ^ SyntaxError: invalid decimal literal
s660842711
p02399
u544943822
1503748958
Python
Python
py
Runtime Error
0
0
94
while True: a, b = map(int. raw_input().split()) f = a/b print(a/b a%b {:.5f}.format(f))
File "/tmp/tmpus7xxgqw/tmprciazxii.py", line 4 print(a/b a%b {:.5f}.format(f)) ^ SyntaxError: invalid decimal literal
s556746312
p02399
u544943822
1503749060
Python
Python
py
Runtime Error
0
0
95
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print(d, r, "{:.5f}".format(f))
Traceback (most recent call last): File "/tmp/tmpgj2t5z5o/tmpwicnhcpg.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line