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
s265888306
p02399
u544943822
1503749180
Python
Python
py
Runtime Error
0
0
98
while True: a, b = map(int. raw_input().split()) f == a/b print(a/b a%b {:.5f}.format(f))
File "/tmp/tmp0znjft05/tmpxqc5mcnh.py", line 4 print(a/b a%b {:.5f}.format(f)) ^ SyntaxError: invalid decimal literal
s899368052
p02399
u727538672
1504171095
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) print(int(a / b), a % b, "{0:.5f}"format(a / b))
File "/tmp/tmpjhmdws7i/tmpmrtih15f.py", line 2 print(int(a / b), a % b, "{0:.5f}"format(a / b)) ^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s159970046
p02399
u362494298
1505186303
Python
Python3
py
Runtime Error
0
0
60
a,b=map(int,input().split()) d=a//b r=a%b f=a/b print(d r f)
File "/tmp/tmpz2ut073f/tmpbpulo9tj.py", line 5 print(d r f) ^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s806903190
p02399
u362494298
1505187661
Python
Python3
py
Runtime Error
0
0
68
a,b=map(int, input().split()) print(a//b, a%b, "{0:5f}"/format(a/b))
Traceback (most recent call last): File "/tmp/tmpdhmnarg6/tmpazb06wj4.py", line 1, in <module> a,b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s465617858
p02399
u362494298
1505187724
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int, input().split()) print(a//b, a%b, "{0:.5f}"/format(a/b))
Traceback (most recent call last): File "/tmp/tmp8d8sjre6/tmp_z2pkq89.py", line 1, in <module> a,b=map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s232456980
p02399
u506705885
1505414582
Python
Python3
py
Runtime Error
0
0
89
nums=[] nums=input('>>>').split() print(nums[0]//nums[1],nums[0]%nums[1],nums[0]/nums[1])
Traceback (most recent call last): File "/tmp/tmp90sieiql/tmp6w96t7rn.py", line 2, in <module> nums=input('>>>').split() ^^^^^^^^^^^^ EOFError: EOF when reading a line
>>>
s423160891
p02399
u664228906
1506327270
Python
Python3
py
Runtime Error
0
0
96
a,b = map(int, input().split()) x = a//b y = a%b g = a/b print("{0} {1} {2:.5f}", format(x,y,g))
Traceback (most recent call last): File "/tmp/tmpg_3ff9v6/tmp2kbxv5le.py", line 1, in <module> a,b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s873613458
p02399
u936401118
1506905763
Python
Python3
py
Runtime Error
0
0
123
a, b, c = map (int, input().split()) count = 0 for i in range(a, b+1): if c % i == 0: count += 1 print (count)
Traceback (most recent call last): File "/tmp/tmpivjy1dq7/tmpoitddnn7.py", line 1, in <module> a, b, c = map (int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s484943797
p02399
u825994660
1508165260
Python
Python3
py
Runtime Error
0
0
105
z = input() a = list(map(int, z.split())) print("{} {} {}"format(a[0] // a[1], a[0] % a[1], a[0] / a[1]))
File "/tmp/tmpw6s74rn8/tmp1tlrgm6f.py", line 3 print("{} {} {}"format(a[0] // a[1], a[0] % a[1], a[0] / a[1])) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s406447048
p02399
u104114903
1509516751
Python
Python
py
Runtime Error
0
0
131
S = raw_input().split(' ') S[0] = int(S[0]) S[1] = int(S[1]) d = str(a//b) r = str(a%b) f = str(a/b) print(d + " " + r + " " + f)
Traceback (most recent call last): File "/tmp/tmpld0a5m6u/tmplwz8n1_p.py", line 1, in <module> S = raw_input().split(' ') ^^^^^^^^^ NameError: name 'raw_input' is not defined
s970218997
p02399
u104114903
1509517170
Python
Python
py
Runtime Error
0
0
169
S = raw_input().split(' ') S[0] = int(S[0]) S[1] = int(S[1]) d = str(S[0]/S[1]) r = str(S[0]%S[1]) f = str(1.0*S[0]/S[1]) print(d + " " + r + " " + format(f, '.7f'))
Traceback (most recent call last): File "/tmp/tmpi4ctsfy7/tmpx3opuc42.py", line 1, in <module> S = raw_input().split(' ') ^^^^^^^^^ NameError: name 'raw_input' is not defined
s192773559
p02399
u846136461
1509523611
Python
Python
py
Runtime Error
0
0
150
deglist = raw_input().split(" ") a = int(deglist[0]) b = int(deglist[1]) d = a / b r = a % b f = 1.0 * a / b print("{0} {1} {2.5f}".format(d, r, f))
Traceback (most recent call last): File "/tmp/tmpzzj3d1ws/tmpfaip6hgf.py", line 1, in <module> deglist = raw_input().split(" ") ^^^^^^^^^ NameError: name 'raw_input' is not defined
s643483237
p02399
u899891332
1510470333
Python
Python3
py
Runtime Error
0
0
135
inp = input().split inp = [int(x) for x in inp] print(inp[0]/inp[1], end=' ') print(inp[0]%inp[1], end=' ') print(inp[0]/float(inp[1]))
Traceback (most recent call last): File "/tmp/tmpmd5zm94p/tmpm53xqth_.py", line 1, in <module> inp = input().split ^^^^^^^ EOFError: EOF when reading a line
s296140626
p02399
u921038488
1512636055
Python
Python3
py
Runtime Error
0
0
161
def getCal(a,b): return a//b, a%b, float((a*100000/b)/100000) a, b = map(int, input().split()) d, r, f = getCal(a,b) print("{} {} {2: 5f}".format(d, r, f))
Traceback (most recent call last): File "/tmp/tmpynp384be/tmp8p7tfn91.py", line 4, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s906019376
p02399
u921038488
1512636089
Python
Python3
py
Runtime Error
0
0
145
def getCal(a,b): return a//b, a%b, float(a/b) a, b = map(int, input().split()) d, r, f = getCal(a,b) print("{} {} {2: 5f}".format(d, r, f))
Traceback (most recent call last): File "/tmp/tmphciwgnp9/tmp9cmxdsm9.py", line 4, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s778356733
p02399
u981238682
1513057307
Python
Python3
py
Runtime Error
0
0
102
mport sys a,b = map(int,sys.stdin.readline().split()) d = a % b r = a - b * d f = a / b print(d,r,f)
File "/tmp/tmpn5wxk3ma/tmpvyrg0rg9.py", line 1 mport sys ^^^ SyntaxError: invalid syntax
s965987025
p02399
u150984829
1513065544
Python
Python3
py
Runtime Error
0
0
67
a,b=map(int,input().split()) print(f'{a//b} {a%b} {.5:float(a/b)}')
Traceback (most recent call last): File "/tmp/tmp45uulesy/tmpz6mgioh_.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s420878073
p02399
u150984829
1513065634
Python
Python3
py
Runtime Error
0
0
68
a,b=map(int,input().split()) print(f'{a//b} {a%b} {f.5:float(a/b)}')
File "/tmp/tmpkg773d_p/tmpiy3unqu5.py", line 2 (f.5) ^^^ SyntaxError: f-string: invalid syntax. Perhaps you forgot a comma?
s985575656
p02399
u150984829
1513100668
Python
Python3
py
Runtime Error
0
0
55
a,b=map(int,input().split()) print(,a//b,a%b,f{a/b:f}')
File "/tmp/tmp3t3g92bs/tmpcb6vy0pw.py", line 2 print(,a//b,a%b,f{a/b:f}') ^ SyntaxError: unterminated string literal (detected at line 2)
s152513585
p02399
u150984829
1513100675
Python
Python3
py
Runtime Error
0
0
56
a,b=map(int,input().split()) print(,a//b,a%b,f'{a/b:f}')
File "/tmp/tmp3nd2hi6d/tmp8yabj6yn.py", line 2 print(,a//b,a%b,f'{a/b:f}') ^ SyntaxError: invalid syntax
s418575078
p02399
u706217959
1513328177
Python
Python3
py
Runtime Error
0
0
259
import math def main(): data = [] n = input().split() a = int(n[0]) b = int(n[1]) divans = a / b intdiv = int(divans) divr = a % b print("{0} {1} {:.5f}".format(intdiv, divr, divans)) if __name__ == '__main__': main()
Traceback (most recent call last): File "/tmp/tmpnu1ni0hy/tmpa0ej19d0.py", line 18, in <module> main() File "/tmp/tmpnu1ni0hy/tmpa0ej19d0.py", line 6, in main n = input().split() ^^^^^^^ EOFError: EOF when reading a line
s414720457
p02399
u585035894
1513931323
Python
Python3
py
Runtime Error
0
0
32
print(int(input())/int(input()))
Traceback (most recent call last): File "/tmp/tmp8l9z1cyr/tmpis7skqae.py", line 1, in <module> print(int(input())/int(input())) ^^^^^^^ EOFError: EOF when reading a line
s416281042
p02399
u165141947
1514631416
Python
Python
py
Runtime Error
0
0
95
a, b = map(int, raw_input().split()) d = a/b r = a%b f = a*1.0/b print ???%d %d %f??? % (d,r,f)
File "/tmp/tmpql9xp113/tmpyej_asim.py", line 5 print ???%d %d %f??? % (d,r,f) ^ SyntaxError: invalid syntax
s656210684
p02399
u737311644
1514700663
Python
Python3
py
Runtime Error
0
0
93
a,b=map(int,input().split()) d=str(a//b) r=str(a%b) f=str(a/b) print(d,r,"{0:.5f}".format(f))
Traceback (most recent call last): File "/tmp/tmp_9u0bzyt/tmpkj0d9hft.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s713643542
p02399
u737311644
1514700859
Python
Python3
py
Runtime Error
0
0
98
a,b=map(int,input().split()) d=str(a//b) r=str(a%b) f=str(a/b) print('{} {} {:f}'.format(d, r, f))
Traceback (most recent call last): File "/tmp/tmphnp9o4ls/tmpx6mhuw85.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s513106247
p02399
u179070318
1515997794
Python
Python3
py
Runtime Error
0
0
73
a,b = [int(x) for x in input().split( )] print(%d,%d,%f,%(a//b,a%b,a/b))
File "/tmp/tmpn4c15izl/tmp6bf3wbn5.py", line 2 print(%d,%d,%f,%(a//b,a%b,a/b)) ^ SyntaxError: invalid syntax
s958050615
p02399
u640809202
1517670443
Python
Python3
py
Runtime Error
0
0
70
a, b= map(int, input().split()) d=int(a/b) r=a%b f=a/b print(a, b, c)
Traceback (most recent call last): File "/tmp/tmpph7dxmqr/tmp_r7yjirq.py", line 1, in <module> a, b= map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s222592489
p02399
u796301295
1517968117
Python
Python3
py
Runtime Error
0
0
78
import math a = float(input()) print (a ** 2.0 * math.pi, a * 2.0 * math.pi)
Traceback (most recent call last): File "/tmp/tmpupsdmlil/tmp1r_m3cza.py", line 2, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s265572635
p02399
u796301295
1517968225
Python
Python3
py
Runtime Error
0
0
78
a = float(input()) print (a ** 2.0 * 3.14159265359, a * 2.0 * 3.14159265359)
Traceback (most recent call last): File "/tmp/tmpgrssdhdt/tmpdh5i50p2.py", line 1, in <module> a = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s335141866
p02399
u444576298
1518010695
Python
Python3
py
Runtime Error
0
0
160
#coding: utf-8 a, b = (int(i) for i in input().split()) print(int(a / b) , end = ' ') print(a % b , end = ' ') print("{: 0<7.5}".format(float(a) / float(b)))
Traceback (most recent call last): File "/tmp/tmp57075u2q/tmp6_l3o_n5.py", line 3, in <module> a, b = (int(i) for i in input().split()) ^^^^^^^ EOFError: EOF when reading a line
s886874383
p02399
u299231628
1519297210
Python
Python
py
Runtime Error
0
0
132
a, b = map(int, input().split()) d = 0 while a > b: a -= b d += 1 r = a f = round(a/b, 5) print('{} {} {}'.format(d, r, f))
Traceback (most recent call last): File "/tmp/tmpi6ia88ur/tmp8hngfsg9.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s957203969
p02399
u387507798
1519784348
Python
Python3
py
Runtime Error
0
0
87
a, b = [int(n) for n in src.readline().split()] print('%s %s %.5f' % (a//b, a%b, a/b))
Traceback (most recent call last): File "/tmp/tmpkzygzmix/tmp_azezpo5.py", line 1, in <module> a, b = [int(n) for n in src.readline().split()] ^^^ NameError: name 'src' is not defined
s007034833
p02399
u613534067
1520161663
Python
Python3
py
Runtime Error
0
0
74
a, b = map(float, input().split()) print(a//b, a%b, "{0:.f}".format(a/b))
Traceback (most recent call last): File "/tmp/tmp801r5iwu/tmpstboj_g9.py", line 1, in <module> a, b = map(float, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s451794319
p02399
u352203480
1521011008
Python
Python3
py
Runtime Error
0
0
193
x, y, z = input().split() a = int(x) b = int(y) c = int(z) count = 0 num = a while num <= b: if c % num == 0: count += 1 else: pass num += 1 print(count)
Traceback (most recent call last): File "/tmp/tmp_7qm3eav/tmp53y8cy4_.py", line 1, in <module> x, y, z = input().split() ^^^^^^^ EOFError: EOF when reading a line
s834648804
p02399
u621084859
1522629038
Python
Python3
py
Runtime Error
0
0
75
x=input().split() a=int(x[0]) b=int(x[1]) print(%d %r %f%(a//b, a%b, a//b)
File "/tmp/tmpxedpc_u2/tmpxxf78zn1.py", line 4 print(%d %r %f%(a//b, a%b, a//b) ^ SyntaxError: invalid syntax
s930149607
p02399
u621084859
1522629078
Python
Python3
py
Runtime Error
0
0
77
x=input().split() a=int(x[0]) b=int(x[1]) print("%d %r %f"%(a//b, a%b, a//b)
File "/tmp/tmp0di_bl3r/tmpq67u0fdc.py", line 4 print("%d %r %f"%(a//b, a%b, a//b) ^ SyntaxError: '(' was never closed
s868148851
p02399
u621084859
1522629135
Python
Python3
py
Runtime Error
0
0
76
x=input().split() a=int(x[0]) b=int(x[1]) print("%d %r %f"%(a//b, a%b, a/b)
File "/tmp/tmplz2filqj/tmpcc8gleb6.py", line 4 print("%d %r %f"%(a//b, a%b, a/b) ^ SyntaxError: '(' was never closed
s219184815
p02399
u621084859
1522629180
Python
Python3
py
Runtime Error
0
0
76
x=input().split() a=int(x[0]) b=int(x[1]) print("%d %d %f"%(a//b, a%b, a/b)
File "/tmp/tmpjrbc251a/tmp1uf15zi8.py", line 4 print("%d %d %f"%(a//b, a%b, a/b) ^ SyntaxError: '(' was never closed
s579945463
p02399
u244493040
1523636833
Python
Python3
py
Runtime Error
0
0
51
a,b = map(int,input().split()) print(a//b a%b a/b)
File "/tmp/tmp79fsfknn/tmpz19szrpy.py", line 2 print(a//b a%b a/b) ^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s270657540
p02399
u648117624
1524384067
Python
Python3
py
Runtime Error
0
0
108
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print("{%d} {%d} {%f}".format(d,r,f))
Traceback (most recent call last): File "/tmp/tmpa12948dh/tmp80edzfcc.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s248956115
p02399
u648117624
1524390844
Python
Python3
py
Runtime Error
0
0
118
a, b = map(int, input().split()) #x = a // b #y = a % b #z = a / b print("{%d} {%d} {%f}".format(a//b, a%b,a/b))
Traceback (most recent call last): File "/tmp/tmpgjaidpa7/tmp0jqxqczw.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s640616915
p02399
u648117624
1524391024
Python
Python3
py
Runtime Error
0
0
135
a, b = map(int, input().split()) #x = a // b #y = a % b #z = a / b print("{%d} {%d} {%f}".format(int(a//b), int(a%b),float(a/b)))
Traceback (most recent call last): File "/tmp/tmpghk1gty4/tmpwk6ezwoj.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s546594265
p02399
u074747865
1524442929
Python
Python3
py
Runtime Error
0
0
68
a,b= map(int, input().split()) print(int(a//b), int(a%b),float(a/b)
File "/tmp/tmpcsg28rjo/tmp4r9hqpd2.py", line 2 print(int(a//b), int(a%b),float(a/b) ^ SyntaxError: '(' was never closed
s317407298
p02399
u485986915
1524459894
Python
Python3
py
Runtime Error
0
0
73
a,b = map(int,input().split()) int d = a/b r = a%b f = a/b print(d,r,f)
File "/tmp/tmphxkzudru/tmp34t6mfnj.py", line 2 int d = a/b ^ SyntaxError: invalid syntax
s770077575
p02399
u589139267
1524478670
Python
Python3
py
Runtime Error
0
0
109
a, b = map(int, input().split()) d = a // b r = a % b f = a / b print("{:d} {;d} {:.5f}".format(d, r, f))
Traceback (most recent call last): File "/tmp/tmp007asm0a/tmpe2mf7ly9.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s917849929
p02399
u836133197
1524490717
Python
Python3
py
Runtime Error
0
0
71
a, b = map(int, input().split()) print(a//b, a%b, "{10f}".format(a/b))
Traceback (most recent call last): File "/tmp/tmpjfxmkq3c/tmp_zo3wary.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s828562251
p02399
u836133197
1524490753
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) print(a//b, " ", a%b, " ", "{10f}".format(a/b))
Traceback (most recent call last): File "/tmp/tmpi8ylr7ws/tmp7vkh_qeu.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s199825009
p02399
u836133197
1524490987
Python
Python3
py
Runtime Error
0
0
70
a, b = map(int, input().split()) print("%d %d %.5f" % a//b, a%b, a/b)
Traceback (most recent call last): File "/tmp/tmp3befx2va/tmpwecr0_zu.py", line 1, in <module> a, b = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s269222118
p02399
u074747865
1524554754
Python
Python3
py
Runtime Error
0
0
70
a,b=map(int,input().split()) print(a//b,a%b,'{0:10.5f}'.format(a/b'))
File "/tmp/tmp5q7a917z/tmps_hf_wxr.py", line 2 print(a//b,a%b,'{0:10.5f}'.format(a/b')) ^ SyntaxError: unterminated string literal (detected at line 2)
s575795406
p02399
u781194524
1524815964
Python
Python3
py
Runtime Error
0
0
74
a,b=[int() for x in input().split()] print(int(a/b),int(a%b),double(a/b))
Traceback (most recent call last): File "/tmp/tmpga74ep45/tmpotv51vhw.py", line 1, in <module> a,b=[int() for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s966528413
p02399
u781194524
1524815975
Python
Python3
py
Runtime Error
0
0
75
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),double(a/b))
Traceback (most recent call last): File "/tmp/tmp3z7jnmyx/tmp5t5uca2e.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s747262224
p02399
u781194524
1524815988
Python
Python3
py
Runtime Error
0
0
75
a,b=[int(x) for x in input().split()] print(int(a/b).int(a%b).double(a/b))
Traceback (most recent call last): File "/tmp/tmpwvgcplns/tmpq7gogg7c.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s960823612
p02399
u781194524
1524816258
Python
Python
py
Runtime Error
0
0
76
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),Decimal(a/b))
Traceback (most recent call last): File "/tmp/tmp8wg5fe3s/tmpckt8007f.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s747046058
p02399
u781194524
1524816315
Python
Python
py
Runtime Error
0
0
81
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),float(float(a)/b))
Traceback (most recent call last): File "/tmp/tmpsdfrqp8_/tmpa7e_7f23.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s607010548
p02399
u781194524
1524816333
Python
Python
py
Runtime Error
0
0
74
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),float(a)/b)
Traceback (most recent call last): File "/tmp/tmphcvu74k6/tmp28u08f9g.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s501291128
p02399
u781194524
1524816342
Python
Python
py
Runtime Error
0
0
74
a,b=[int(x) for x in input().split()] print(int(a/b),int(a%b),float(a/b))
Traceback (most recent call last): File "/tmp/tmpu5qdkfdo/tmptzsy0glb.py", line 1, in <module> a,b=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s184761018
p02399
u455935767
1527060223
Python
Python3
py
Runtime Error
0
0
103
a = int(input().split()) print(str(int(a[0]/a[1]))) print(str(a[0]%a[1])) print(str(a[0]/float(a[1])))
Traceback (most recent call last): File "/tmp/tmp9rix4_6d/tmpfbyw3iv4.py", line 1, in <module> a = int(input().split()) ^^^^^^^ EOFError: EOF when reading a line
s232019208
p02399
u940150266
1527156451
Python
Python3
py
Runtime Error
0
0
144
a,b,c = map(int, input().split()) sum = 0 result = 0 while b >= a: result = c%a if result == 0: sum += 1 a += 1 print(sum)
Traceback (most recent call last): File "/tmp/tmpmqz1ovlt/tmpdp6rp70b.py", line 1, in <module> a,b,c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s211960655
p02399
u500257793
1527675720
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int,input().split()) s=a//b r=a%b f=double(a)/b print(s,r,f)
Traceback (most recent call last): File "/tmp/tmpo6vcrin7/tmps8dp7t77.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s924655039
p02399
u500257793
1527675759
Python
Python3
py
Runtime Error
0
0
69
a,b=map(int,input().split()) s=a//b r=a%b f=a/b print(s,r,double(f))
Traceback (most recent call last): File "/tmp/tmppf9ubgia/tmp2vzvaooq.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s703160468
p02399
u597483031
1528469782
Python
Python3
py
Runtime Error
0
0
97
a,b=map(int,input().split()) one=a//b two=a%b three=a/b print(a//b,a%b,"{:three}".format(three))
Traceback (most recent call last): File "/tmp/tmpt9d7yhi1/tmplbtxgwci.py", line 1, in <module> a,b=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s980561279
p02399
u597483031
1528469852
Python
Python3
py
Runtime Error
0
0
52
a,b=map(int,input().split()) print(a//b,a%b,{:a/b})
File "/tmp/tmp34l4zmj3/tmp9ptwn7ny.py", line 2 print(a//b,a%b,{:a/b}) ^ SyntaxError: invalid syntax
s161496400
p02399
u763301852
1363008179
Python
Python
py
Runtime Error
0
0
81
a, b = map(int, raw_input().split()) print("%d %d %f", % (a//b, a%b, a/float(b)))
File "/tmp/tmpnh99y9km/tmpfsvihzi5.py", line 2 print("%d %d %f", % (a//b, a%b, a/float(b))) ^ SyntaxError: invalid syntax
s579859591
p02399
u434428594
1363435933
Python
Python
py
Runtime Error
0
0
54
a,b = map(int, raw_input()) print a/b, a%b, float(a)/b
File "/tmp/tmp2wxolwt7/tmpl2quguh6.py", line 2 print a/b, a%b, float(a)/b ^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s739904187
p02399
u912237403
1370860499
Python
Python
py
Runtime Error
20
4228
122
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpkn5bpxv9/tmpce36w33y.py", line 5 print '%d %d %f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s290240450
p02399
u912237403
1370861201
Python
Python
py
Runtime Error
20
4228
124
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %f15' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpd5evh97z/tmpqydpbgmt.py", line 5 print '%d %d %f15' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s212830243
p02399
u912237403
1370861432
Python
Python
py
Runtime Error
10
4228
126
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %5.10f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpsnd8t6gs/tmpskl87j2s.py", line 5 print '%d %d %5.10f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s496591987
p02399
u912237403
1370861500
Python
Python
py
Runtime Error
20
4228
125
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp614ycya5/tmpkgrm4avd.py", line 5 print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s768518664
p02399
u912237403
1370861852
Python
Python
py
Runtime Error
20
4268
127
import sys for line in sys.stdin: a,b = line.split() a,b = long(a),long(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp1vk_2zre/tmpsz0dkbdb.py", line 5 print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s942220090
p02399
u912237403
1370861929
Python
Python
py
Runtime Error
20
4228
128
import sys for line in sys.stdin: a,b = line.split(' ') a,b = int(a),int(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp_w2ltg7y/tmpmi0h77r0.py", line 5 print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s841398808
p02399
u912237403
1370862134
Python
Python
py
Runtime Error
20
4228
128
import sys for line in sys.stdin: a,b = line.split(' ') a,b = int(a),int(b) print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpj30b_8z2/tmp0rwgqyvc.py", line 5 print '%d %d %5.8f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s287170847
p02399
u912237403
1370862369
Python
Python
py
Runtime Error
10
4228
125
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpqtyylsbw/tmpa3rwjj9z.py", line 5 print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s211440404
p02399
u912237403
1370862670
Python
Python
py
Runtime Error
20
4232
130
import sys for line in sys.stdin: a,b = line.split(' ',2) a,b = int(a),int(b) print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp769n9zup/tmprm4m2tif.py", line 5 print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s412324578
p02399
u912237403
1370862747
Python
Python
py
Runtime Error
20
4232
130
import sys for line in sys.stdin: a,b = line.split(' ',1) a,b = int(a),int(b) print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp_9oys57x/tmp566dmjtt.py", line 5 print '%d %d %5.6f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s222473261
p02399
u912237403
1370863828
Python
Python
py
Runtime Error
10
4228
124
import sys for line in sys.stdin: a,b = line.split() a,b = int(a),int(b) print '%d %d %.8f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp83kmfw_u/tmpj53hvbpv.py", line 5 print '%d %d %.8f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s803712528
p02399
u912237403
1370864385
Python
Python
py
Runtime Error
10
4236
156
import sys for line in sys.stdin: p = line.index(' ') a,b = line[:p],line[p+1:] a,b = int(a),int(b) print '%d %d %.12f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmp7eqvcbvo/tmpu6hmp9bz.py", line 6 print '%d %d %.12f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s347416511
p02399
u912237403
1370865037
Python
Python
py
Runtime Error
0
0
165
import sys for line in sys.stdin: p = line.strip('\n').index() a,b = line[:p],line[p+1:] a,b = int(a),int(b) print '%d %d %.12f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpuazn5bkh/tmpphpxj90d.py", line 6 print '%d %d %.12f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s447347671
p02399
u912237403
1370865104
Python
Python
py
Runtime Error
10
4236
168
import sys for line in sys.stdin: p = line.strip('\n').index(' ') a,b = line[:p],line[p+1:] a,b = int(a),int(b) print '%d %d %.12f' %(a/b, a%b, 1.0*a/b)
File "/tmp/tmpffcdsagl/tmp0ggc4vky.py", line 6 print '%d %d %.12f' %(a/b, a%b, 1.0*a/b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s469871053
p02399
u511257811
1381663055
Python
Python
py
Runtime Error
20
4220
152
import sys for line in sys.stdin: a, b = map(int, line.rstrip('\n').split(' ')) d, r, f = a/b, a%b, (a*1.0)/b print '%d %d %.5f' % (d, r, f)
File "/tmp/tmp3kctpmqc/tmphierqm_1.py", line 5 print '%d %d %.5f' % (d, r, f) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s195887372
p02399
u140201022
1381728779
Python
Python
py
Runtime Error
0
0
124
while True: i = map(int, raw_input().split()) if i[1]==0: break else: print i[0]/i[1],i[0]%i[1],float(i[0])/i[1]
File "/tmp/tmpba9xlsfq/tmpy4vxoqv4.py", line 4 else: print i[0]/i[1],i[0]%i[1],float(i[0])/i[1] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s896434407
p02399
u633068244
1393318045
Python
Python
py
Runtime Error
0
0
70
a,b = map(int, raw_input().split()) print a/b, a % b, real(a)/real(b)
File "/tmp/tmpv_36wz2c/tmp_3yxl8r6.py", line 3 print a/b, a % b, real(a)/real(b) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s646561381
p02399
u633068244
1393318435
Python
Python
py
Runtime Error
0
0
79
a,b = map(int, raw_input().split()) print ("%d %d %f" %(a//b,a % b,a/float(b))
File "/tmp/tmpe6s6_ipl/tmp5ml_1mk5.py", line 3 print ("%d %d %f" %(a//b,a % b,a/float(b)) ^ SyntaxError: '(' was never closed
s891466286
p02399
u193025715
1394557291
Python
Python
py
Runtime Error
0
0
188
#!/usr/bin/python import sys num = str(raw_input()).split(" ") a = int(num[0]) b = int(num[1]) d = a / b - a % b r = a % b float f = a / b print str(d + " " + r + " " + f) sys.exit()
File "/tmp/tmpgg737wu2/tmpyuyy6vmr.py", line 12 float f = a / b ^ SyntaxError: invalid syntax
s209254447
p02399
u971748390
1398315459
Python
Python
py
Runtime Error
0
0
61
a,b = map(int,raw_input()) d=a/b r=a%b f=1.0*a/b print d,r,f
File "/tmp/tmpdmjgw7mr/tmpbm6hh_ft.py", line 5 print d,r,f ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s954316299
p02399
u971748390
1398315487
Python
Python
py
Runtime Error
0
0
61
a,b = map(int,raw_input()) d=a/b r=a%b f=1.0*a/b print d,r,f
File "/tmp/tmp359j40qk/tmp1m6gbz0r.py", line 5 print d,r,f ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s883055595
p02400
u917722865
1530788372
Python
Python3
py
Runtime Error
0
0
255
#include <iostream> #include <iomanip> using namespace std; int main() { const double PI = 3.141592653589; double r; double area, circle; area = r * r * PI; circle = 2 * r * PI; cout << fixed << setprecision(5) << area << " " << circle << endl; }
File "/tmp/tmp7jhh6p3k/tmps3s5ygms.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s946422759
p02400
u917722865
1530788465
Python
Python3
py
Runtime Error
0
0
266
#include <iostream> #include <iomanip> using namespace std; int main() { const double PI = 3.141592653589; double r; double area, circle; cin >> r; area = r * r * PI; circle = 2 * r * PI; cout << fixed << setprecision(5) << area << " " << circle << endl; }
File "/tmp/tmpwmbb721u/tmpp2_2sx7e.py", line 4 using namespace std; ^^^^^^^^^ SyntaxError: invalid syntax
s833350532
p02400
u203222829
1530879157
Python
Python3
py
Runtime Error
0
0
83
import math r = int(input()) print(math.pai * r * r, 4 * math.pai * r * r * r / 3)
Traceback (most recent call last): File "/tmp/tmpu4tei_f8/tmphdkdt42q.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s350105523
p02400
u203222829
1530879231
Python
Python3
py
Runtime Error
0
0
95
import math r = int(input()) s = math.pai * r ** 2 l = 4 * math.pai * r ** 3 / 3 print(s, l)
Traceback (most recent call last): File "/tmp/tmpyf49gk7w/tmpbz5_scmu.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s552368560
p02400
u203222829
1530879278
Python
Python3
py
Runtime Error
0
0
97
import math r = float(input()) s = math.pai * r ** 2 l = 4 * math.pai * r ** 3 / 3 print(s, l)
Traceback (most recent call last): File "/tmp/tmps5rvfbcv/tmp4ukv4jf1.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s598391846
p02400
u548155360
1531368117
Python
Python3
py
Runtime Error
0
0
62
import math r=int(input()) print(math.pi*r**2, 2*math.pi*r)
Traceback (most recent call last): File "/tmp/tmpmmg7ikhf/tmppr4l5iqn.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s886289520
p02400
u548155360
1531368143
Python
Python3
py
Runtime Error
0
0
62
import math r=int(input()) print(math.PI*r**2, 2*math.PI*r)
Traceback (most recent call last): File "/tmp/tmp6641irn_/tmp7znbcv2c.py", line 2, in <module> r=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s618311747
p02400
u548155360
1531368210
Python
Python3
py
Runtime Error
0
0
64
import math r=float(input()) print(math.PI*r**2, 2*math.PI*r)
Traceback (most recent call last): File "/tmp/tmpeut0z9s4/tmp58rwoo84.py", line 2, in <module> r=float(input()) ^^^^^^^ EOFError: EOF when reading a line
s241608924
p02400
u800021849
1531466706
Python
Python3
py
Runtime Error
0
0
88
pi = 3.141592653589793 r = int(input()) print("%.6f %.6f" % (pi * r ** 2, 2 * pi * r))
Traceback (most recent call last): File "/tmp/tmpqje94a9u/tmp338ba8p8.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s073017750
p02400
u222716853
1532004440
Python
Python3
py
Runtime Error
0
0
102
from decimal import Decimal import math r =int(input()) R = r*2*math.pi S = r**2*math.pi print(R,S)
Traceback (most recent call last): File "/tmp/tmpj_thudmh/tmpiz6yv8fq.py", line 3, in <module> r =int(input()) ^^^^^^^ EOFError: EOF when reading a line
s972769068
p02400
u222716853
1532004519
Python
Python3
py
Runtime Error
0
0
73
import math r =int(input()) R = r*2*math.pi S = r**2*math.pi print(R,S)
Traceback (most recent call last): File "/tmp/tmps1vl5p4n/tmphd4zt7wo.py", line 2, in <module> r =int(input()) ^^^^^^^ EOFError: EOF when reading a line
s842916409
p02400
u336705996
1535087966
Python
Python3
py
Runtime Error
0
0
87
from math import pi r = int(input()) print('{0:0.8f} {1:0.8f}'.format(r*r*pi,2*pi*r))
Traceback (most recent call last): File "/tmp/tmp3v3a_gr4/tmpsoyvhufm.py", line 2, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s445984255
p02400
u689047545
1535187439
Python
Python3
py
Runtime Error
0
0
92
import numpy as np r = int(input()) print ('{0:.6f} {1:.6f}'.format(r*r*np.pi, 2*r*np.pi))
Traceback (most recent call last): File "/tmp/tmpuby1qvm8/tmp3xaqlygz.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s319974289
p02400
u689047545
1535187492
Python
Python3
py
Runtime Error
0
0
94
import numpy as np r = float(input()) print ('{0:.6f} {1:.6f}'.format(r*r*np.pi, 2*r*np.pi))
Traceback (most recent call last): File "/tmp/tmpisud7gwz/tmp4t7ecplt.py", line 3, in <module> r = float(input()) ^^^^^^^ EOFError: EOF when reading a line
s749145345
p02400
u973203074
1535273685
Python
Python3
py
Runtime Error
0
0
70
from math import pi r = int(input()) print(pi * r ** 2, pi * r * 2)
Traceback (most recent call last): File "/tmp/tmpz4mokvfc/tmpb2o34rrp.py", line 3, in <module> r = int(input()) ^^^^^^^ EOFError: EOF when reading a line