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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s959355754 | p02389 | u830563109 | 1513438623 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | a = int(input()),b = int(input())
m = a*b,s = a+b*2
print("m,s") | File "/tmp/tmpjxbp4ca6/tmpcbe96ld2.py", line 1
a = int(input()),b = int(input())
^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Maybe you meant '==' or ':=' instead of '='?
| |
s960313768 | p02389 | u830563109 | 1513438862 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | x, y = input().split()
print(x*y,x+y*2) | Traceback (most recent call last):
File "/tmp/tmpjqq0mmvu/tmp5beqxmm8.py", line 1, in <module>
x, y = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s550360229 | p02389 | u264730086 | 1513665627 | Python | Python3 | py | Runtime Error | 0 | 0 | 57 | a,b = list(map(int,input().split(" "))
print(a*b,a*2+b*2) | File "/tmp/tmpm6__ecmr/tmp26x2p46w.py", line 1
a,b = list(map(int,input().split(" "))
^
SyntaxError: '(' was never closed
| |
s555919859 | p02389 | u506705885 | 1513992767 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a,b=map(int,input().split())
print(a*b,(a+b)*2 | File "/tmp/tmpj3jw_cdk/tmph462kda3.py", line 2
print(a*b,(a+b)*2
^
SyntaxError: '(' was never closed
| |
s992602957 | p02389 | u801823223 | 1514297424 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | value = input().split()
print(str(value[0]*value[1])+" "+str((value[0]+value[1])*2) | File "/tmp/tmpynlx751u/tmpgiqc1dzn.py", line 2
print(str(value[0]*value[1])+" "+str((value[0]+value[1])*2)
^
SyntaxError: '(' was never closed
| |
s342814560 | p02389 | u589139267 | 1514355286 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a = int(input())
b = int(input())
S = a * b
L = 2 * (a + b) | Traceback (most recent call last):
File "/tmp/tmp56q35y0c/tmp7r23ltcg.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s667543610 | p02389 | u589139267 | 1514355327 | Python | Python3 | py | Runtime Error | 0 | 0 | 70 | a = int(input())
b = int(input())
S = a * b
L = 2 * (a + b)
print(S L) | File "/tmp/tmpe4osqbu8/tmpt_tgj2ml.py", line 5
print(S L)
^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s357273840 | p02389 | u589139267 | 1514355354 | Python | Python3 | py | Runtime Error | 0 | 0 | 72 | a = int(input())
b = int(input())
S = a * b
L = 2 * (a + b)
print("S L") | Traceback (most recent call last):
File "/tmp/tmpvazfq7sc/tmpqslgls34.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s668492116 | p02389 | u822038573 | 1514362823 | Python | Python3 | py | Runtime Error | 0 | 0 | 29 | print (a*b)
print (2*a + 2*b) | Traceback (most recent call last):
File "/tmp/tmpdx89wtj_/tmpvs3uecwx.py", line 1, in <module>
print (a*b)
^
NameError: name 'a' is not defined
| |
s548882436 | p02389 | u801823223 | 1514383291 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | spam=input().split(' ')
print(' '.join(spam[0] * spam[1], 2*(spam[0]+spam[1]))) | Traceback (most recent call last):
File "/tmp/tmpg6q6fi2x/tmp9ik4pg0a.py", line 1, in <module>
spam=input().split(' ')
^^^^^^^
EOFError: EOF when reading a line
| |
s390110355 | p02389 | u801823223 | 1514383330 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | spam=input().split(' ')
print(' '.join(spam[0] * spam[1], 2*(spam[0]+spam[1])))
return 0 | File "/tmp/tmpt27lh0g1/tmpbhm4ylgp.py", line 3
return 0
^^^^^^^^
SyntaxError: 'return' outside function
| |
s085372229 | p02389 | u801823223 | 1514383362 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | spam=input().split(' ')
print(' '.join(spam[0] * spam[1], 2*(spam[0]+spam[1]))) | Traceback (most recent call last):
File "/tmp/tmp_b4qzve8/tmpparet0w9.py", line 1, in <module>
spam=input().split(' ')
^^^^^^^
EOFError: EOF when reading a line
| |
s445513821 | p02389 | u841567836 | 1515043364 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | l = input().split()
a = l[0]
b = l[1]
L = 2 * (a + b)
S = a * b
print(S, L)
| Traceback (most recent call last):
File "/tmp/tmp8q639urb/tmpphr_aeib.py", line 1, in <module>
l = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s977804517 | p02389 | u841567836 | 1515043567 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | l = map(int, raw_input().split())
S = l[0] * l[1]
L = 2 * (l[0] + l[1])
print(S, L)
| Traceback (most recent call last):
File "/tmp/tmphb0ge_of/tmptr5j6y8g.py", line 1, in <module>
l = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s436205832 | p02389 | u841567836 | 1515043613 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | l = map(int, input().split())
S = l[0] * l[1]
L = 2 * (l[0] + l[1])
print(S, L)
| File "/tmp/tmpau3qo2_o/tmprqamu9je.py", line 4
^
SyntaxError: invalid non-printable character U+00A0
| |
s541967430 | p02389 | u595280169 | 1515055791 | Python | Python3 | py | Runtime Error | 0 | 0 | 333 | print("ようこそ!面積計算プログラムへ!")
print("ーーーーーーーーーーーーーーーー")
print("")
#実際の計算
hight = int(input("高さを入力してください:"))
wide = int(input("長さを入力してください:"))
area = hight*wide
length = (hight+wide)*2
print(area)
print(length)
| Traceback (most recent call last):
File "/tmp/tmp4r3h8z4d/tmpjgrm4p8c.py", line 5, in <module>
hight = int(input("高さを入力してください:"))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| ようこそ!面積計算プログラムへ!
ーーーーーーーーーーーーーーーー
高さを入力してください: |
s105063925 | p02389 | u595280169 | 1515055821 | Python | Python3 | py | Runtime Error | 0 | 0 | 187 | hight = int(input("高さを入力してください:"))
wide = int(input("長さを入力してください:"))
area = hight*wide
length = (hight+wide)*2
print(area)
print(length)
| Traceback (most recent call last):
File "/tmp/tmp8p7pqrvv/tmp3lmqk_fl.py", line 1, in <module>
hight = int(input("高さを入力してください:"))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
EOFError: EOF when reading a line
| 高さを入力してください: |
s770964138 | p02389 | u595280169 | 1515056184 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = int(input())
b = int(input())
area = a*b
length = (a+b)*2
print(area,length)
| Traceback (most recent call last):
File "/tmp/tmpqbz_vzqe/tmp3v5_rlh4.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s119258580 | p02389 | u100875060 | 1515207898 | Python | Python | py | Runtime Error | 0 | 0 | 69 | x = map(int, raw_input().split())
print(x[0]*x[1]+' '+(x[0]+x[1])*2)
| Traceback (most recent call last):
File "/tmp/tmp0dgtljzl/tmp2vmrd4kz.py", line 1, in <module>
x = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s466309093 | p02389 | u100875060 | 1515207914 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | x = map(int, raw_input().split())
print(x[0]*x[1]+' '+(x[0]+x[1])*2)
| Traceback (most recent call last):
File "/tmp/tmpxle3s3n0/tmp9pdcxust.py", line 1, in <module>
x = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s561012304 | p02389 | u100875060 | 1515208104 | Python | Python | py | Runtime Error | 0 | 0 | 66 | a,b = map(int, raw_input().split())
print x[0]*x[1],(x[0]+x[1])*2
| File "/tmp/tmpcu2i0b8q/tmpe6pa9kmr.py", line 2
print x[0]*x[1],(x[0]+x[1])*2
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s040713881 | p02389 | u100875060 | 1515208170 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | a,b = map(int, raw_input().split())
print(a*b,(a+b)*2)
| Traceback (most recent call last):
File "/tmp/tmpsjaxb9zo/tmplx48zal9.py", line 1, in <module>
a,b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s622944488 | p02389 | u072855832 | 1515484055 | Python | Python3 | py | Runtime Error | 0 | 0 | 45 | x = int(input())
y = int(input())
print(x*y)
| Traceback (most recent call last):
File "/tmp/tmp_cq3drad/tmpgh_xsjvm.py", line 1, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s521890563 | p02389 | u072855832 | 1515487610 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | x = int(input())
y = int(input())
print(x*y)
print(2*x+2*y)
| Traceback (most recent call last):
File "/tmp/tmpz3xr1gdg/tmp4et57tu5.py", line 1, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s465143160 | p02389 | u072855832 | 1515488048 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | x = int(input())
y = int(input())
print((x*y), (2*x+2*y))
| Traceback (most recent call last):
File "/tmp/tmpfxuogodi/tmpn6uu34y7.py", line 1, in <module>
x = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s090925708 | p02389 | u299257375 | 1515751185 | Python | Python3 | py | Runtime Error | 0 | 0 | 55 | ab = int(input().split())
print(a*b, a*2+b*2, sep=" ")
| Traceback (most recent call last):
File "/tmp/tmpvha5hwlr/tmph02up62h.py", line 1, in <module>
ab = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s815704262 | p02389 | u299257375 | 1515751289 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | ab = int(input().split())
print(ab[0]*ab[1], ab[0]*2+ab[1]*2, sep=" ")
| Traceback (most recent call last):
File "/tmp/tmpnzupxmr8/tmpcnehbxjh.py", line 1, in <module>
ab = int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s838700459 | p02389 | u726789377 | 1516019880 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | data = input().split()
a = data[0]
b = data[1]
print(int(a) * int(b))
print(2 * (int(a) + int(b))
| File "/tmp/tmp129domx_/tmpgbdlo3y8.py", line 5
print(2 * (int(a) + int(b))
^
SyntaxError: '(' was never closed
| |
s776938495 | p02389 | u726789377 | 1516019988 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | data = input().split()
a = data[0]
b = data[1]
print(int(a) * int(b),2 * (int(a) + int(b))
| File "/tmp/tmp_54uj8cr/tmpn34v2dpq.py", line 4
print(int(a) * int(b),2 * (int(a) + int(b))
^
SyntaxError: '(' was never closed
| |
s566552038 | p02389 | u726789377 | 1516020026 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | data = input().split()
a = data[0]
b = data[1]
print(int(a) * int(b), 2 * (int(a) + int(b))
| File "/tmp/tmp64cmcbuo/tmpcpphlrwk.py", line 4
print(int(a) * int(b), 2 * (int(a) + int(b))
^
SyntaxError: '(' was never closed
| |
s925443366 | p02389 | u726789377 | 1516020064 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | data = input().split()
a = data[0]
b = data[1]
print(int(a) * int(b), 2 * (int(a) + int(b))
| File "/tmp/tmpdt9qni6a/tmpfe78lup4.py", line 4
print(int(a) * int(b), 2 * (int(a) + int(b))
^
SyntaxError: '(' was never closed
| |
s617278979 | p02389 | u201482750 | 1516074893 | Python | Python3 | py | Runtime Error | 0 | 0 | 41 | a=int(input())
b=int(input())
print(a*b)
| Traceback (most recent call last):
File "/tmp/tmp6oy3ck3s/tmp2j4olnaz.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s904873014 | p02389 | u201482750 | 1516074946 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a=int(input())
b=int(input())
print(a*b," ",2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmpxdc1mr9o/tmpdbcdq8ia.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s668250923 | p02389 | u201482750 | 1516075057 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a=int(input())
b=int(input())
print(a*b,' ',2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmpydp_10t6/tmppex9onzu.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s452398407 | p02389 | u059121893 | 1516204582 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a = int(input())
b = int(input())
print(a*b)
| Traceback (most recent call last):
File "/tmp/tmpxc36s0si/tmpm1zrmu75.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s421951700 | p02389 | u059121893 | 1516204693 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | a = int(input())
b = int(input())
print(a*b)
print(2*( a + b ))
| Traceback (most recent call last):
File "/tmp/tmpeuju77dy/tmp8imhy4ao.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s705140553 | p02389 | u059121893 | 1516204730 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a = int(input())
b = int(input())
print(a*b,end = '')
print(2*( a + b ))
| Traceback (most recent call last):
File "/tmp/tmp35q5roab/tmpe9khgl0z.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s136100236 | p02389 | u059121893 | 1516204777 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a = int(input())
b = int(input())
print(a*b,end = ' ')
print(2*( a + b ))
| Traceback (most recent call last):
File "/tmp/tmpbu20ty92/tmp_lm48ctb.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s709834755 | p02389 | u538029805 | 1516276327 | Python | Python | py | Runtime Error | 0 | 0 | 98 | while True
a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * a + 2* b)
| File "/tmp/tmpqnt1i23b/tmpojdvjgq4.py", line 1
while True
^
SyntaxError: expected ':'
| |
s081990808 | p02389 | u538029805 | 1516276462 | Python | Python | py | Runtime Error | 0 | 0 | 82 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * a + 2* b)
| File "/tmp/tmpd84ww674/tmp_9tj2o4h.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s067787883 | p02389 | u538029805 | 1516276634 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmpi5thzmll/tmpqp2u0lcu.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s805643854 | p02389 | u538029805 | 1516277762 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmp4ro2omrl/tmpzvu11s7t.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s030393691 | p02389 | u538029805 | 1516277830 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmpjeybsufe/tmpetwuoftv.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s542247976 | p02389 | u538029805 | 1516278123 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmpm_bmyoo7/tmpkn7b7ymh.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s527057996 | p02389 | u538029805 | 1516280718 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmpeiixdhec/tmp339_bz0s.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s410037764 | p02389 | u538029805 | 1516280742 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmpwz1igcwh/tmp4gezo34l.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s428911338 | p02389 | u538029805 | 1516280800 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmptuzn46ek/tmpogc2f66h.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s085799963 | p02389 | u538029805 | 1516280817 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a = input()
b = input()
if a,b > 1 and a,b < 100
print (a * b,2 * (a + b))
| File "/tmp/tmptgpbclb8/tmp90l80mmb.py", line 4
if a,b > 1 and a,b < 100
^
SyntaxError: invalid syntax
| |
s169082551 | p02389 | u742505495 | 1517385489 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | a,b=map(int(input().split()))
print(a*b,2*(a+b))
| Traceback (most recent call last):
File "/tmp/tmp5938bnb6/tmpjs947jgk.py", line 1, in <module>
a,b=map(int(input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s960797613 | p02389 | u640809202 | 1517656250 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | l = input().split()
x = int(l[0])
y = int(l[1])
print(x * y + " " + 2*x + 2*y)
| Traceback (most recent call last):
File "/tmp/tmp9yk5dydj/tmptsaz71nt.py", line 1, in <module>
l = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s862383347 | p02389 | u640809202 | 1517656521 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a, b= map(int, input().split())
print a*b, a*2 + b*2
| File "/tmp/tmp1m8_dtka/tmpaa8my_2k.py", line 3
print a*b, a*2 + b*2
^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s059630210 | p02389 | u640809202 | 1517660219 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a, b = map(int(input().split()))
print(a*b), (a*2+b*2)
| Traceback (most recent call last):
File "/tmp/tmp6izk0t2y/tmpj8sfslie.py", line 1, in <module>
a, b = map(int(input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s985067763 | p02389 | u798565376 | 1517680257 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | list = map(int(), input().split())
area = list[0] * list[1]
perimeter = list[0] * 2 + list[1] * 2
print(str(area) + " " + str(perimeter))
| Traceback (most recent call last):
File "/tmp/tmprjat6upg/tmppc8etdnf.py", line 1, in <module>
list = map(int(), input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s648252467 | p02389 | u798565376 | 1517680399 | Python | Python3 | py | Runtime Error | 0 | 0 | 130 | list = map(int(), input().split())
area = list[0] * list[1]
perimeter = list[0] * 2 + list[1] * 2
'{} {}'.format(area, perimeter)
| Traceback (most recent call last):
File "/tmp/tmpka_vr_zq/tmp7nif_l_s.py", line 1, in <module>
list = map(int(), input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s677653682 | p02389 | u798565376 | 1517680525 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | list = map(int(), input().split())
area = list[0] * list[1]
perimeter = list[0] * 2 + list[1] * 2
print('%d %d' (area, perimeter))
| /tmp/tmpjmjnp5c4/tmpr4nwmh49.py:4: SyntaxWarning: 'str' object is not callable; perhaps you missed a comma?
print('%d %d' (area, perimeter))
Traceback (most recent call last):
File "/tmp/tmpjmjnp5c4/tmpr4nwmh49.py", line 1, in <module>
list = map(int(), input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s215857255 | p02389 | u798565376 | 1517680601 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | list = map(int(), input().split())
area = list[0] * list[1]
perimeter = list[0] * 2 + list[1] * 2
print('{0} {1}.format(area, perimeter))
| File "/tmp/tmp60vfcz85/tmp_tmxomrc.py", line 4
print('{0} {1}.format(area, perimeter))
^
SyntaxError: unterminated string literal (detected at line 4)
| |
s535049542 | p02389 | u798565376 | 1517680633 | Python | Python3 | py | Runtime Error | 0 | 0 | 170 | list = map(int(), input().split())
area = list[0] * list[1]
perimeter = list[0] * 2 + list[1] * 2
print(area)
print(perimeter)
# print('{0} {1}.format(area, perimeter))
| Traceback (most recent call last):
File "/tmp/tmpscs5rl5e/tmpkvb8y_ec.py", line 1, in <module>
list = map(int(), input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s083529424 | p02389 | u798565376 | 1517680643 | Python | Python3 | py | Runtime Error | 0 | 0 | 168 | list = map(int, input().split())
area = list[0] * list[1]
perimeter = list[0] * 2 + list[1] * 2
print(area)
print(perimeter)
# print('{0} {1}.format(area, perimeter))
| Traceback (most recent call last):
File "/tmp/tmpccus9ody/tmprcqd3a36.py", line 1, in <module>
list = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s713336999 | p02389 | u798565376 | 1517681213 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | l = list(map(int, input().split()))
area = l[0] * l[1]
perimeter = l[0] * 2 + l[1] * 2
print('{0} {1}.format(area, perimeter))
| File "/tmp/tmp_oiyy_2r/tmps55exyyu.py", line 4
print('{0} {1}.format(area, perimeter))
^
SyntaxError: unterminated string literal (detected at line 4)
| |
s932848886 | p02389 | u245495144 | 1517804482 | Python | Python | py | Runtime Error | 0 | 0 | 45 | a=input("")
b=input("")
print(a*b),(2*a+2*b)
| Traceback (most recent call last):
File "/tmp/tmpgxwhrxbl/tmppgvdc8v0.py", line 1, in <module>
a=input("")
^^^^^^^^^
EOFError: EOF when reading a line
| |
s663629105 | p02389 | u441437435 | 1517992345 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | import sys
a,b = map(int(sys.stdin.readline().split()))
print(a*b,2(a+b))
| /tmp/tmpjfff716j/tmpb7_d4udz.py:3: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(a*b,2(a+b))
Traceback (most recent call last):
File "/tmp/tmpjfff716j/tmpb7_d4udz.py", line 2, in <module>
a,b = map(int(sys.stdin.readline().split()))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'list'
| |
s172614555 | p02389 | u996463517 | 1518098869 | Python | Python3 | py | Runtime Error | 0 | 0 | 59 | a,b = map(int,input())
s = a*b
l = 2*a + 2*b
print(s,l)
| Traceback (most recent call last):
File "/tmp/tmpkn4vehil/tmpleyf2c0q.py", line 1, in <module>
a,b = map(int,input())
^^^^^^^
EOFError: EOF when reading a line
| |
s430813403 | p02389 | u442426662 | 1518108266 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | a=input()
a=a.split(" ")
print(int(a[0])*int(a[1]),2*(int(a[0])+int(b[0])))
| Traceback (most recent call last):
File "/tmp/tmp32nszziv/tmp7bgxcqa4.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s691752405 | p02389 | u613627875 | 1518152487 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = int(input())
b = int(input())
print(a*b)
print(2a + 2b)
| File "/tmp/tmpnzwbq_pg/tmpvuha8fxd.py", line 5
print(2a + 2b)
^
SyntaxError: invalid decimal literal
| |
s499143638 | p02389 | u613627875 | 1518152570 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | a = int(input())
b = int(input())
print(a*b)
print(2*a + 2*b)
| Traceback (most recent call last):
File "/tmp/tmpyabc5yym/tmpzdra11ka.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s075018205 | p02389 | u613627875 | 1518152599 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a = int(input())
b = int(input())
print(a*b)
print(2*a+2*b)
| Traceback (most recent call last):
File "/tmp/tmpb5v1ed_2/tmpmwy_anws.py", line 1, in <module>
a = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s934779238 | p02389 | u613627875 | 1518152747 | Python | Python3 | py | Runtime Error | 0 | 0 | 54 | a = int(input())
b = int(input())
print(a*b 2*(a+b))
| File "/tmp/tmp8ikrjpf4/tmpqes1934x.py", line 4
print(a*b 2*(a+b))
^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s812224914 | p02389 | u313021086 | 1518163405 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a = int(input(""))
b = int(input(""))
print(str(a * b) + " " + str(2 * a + 2 * b))
| Traceback (most recent call last):
File "/tmp/tmpll64dlrn/tmpr5fqz52f.py", line 1, in <module>
a = int(input(""))
^^^^^^^^^
EOFError: EOF when reading a line
| |
s409741426 | p02389 | u313021086 | 1518163446 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a = int(input(""))
b = int(input(""))
print(str(a * b) + " " + str(2 * a + 2 * b))
print("")
| Traceback (most recent call last):
File "/tmp/tmpp6fexwyq/tmpqz7q9r_z.py", line 1, in <module>
a = int(input(""))
^^^^^^^^^
EOFError: EOF when reading a line
| |
s437977219 | p02389 | u313021086 | 1518163475 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | a = int(input(""))
b = int(input(""))
print(str(a * b) + " " + str(2 * a + 2 * b))
| Traceback (most recent call last):
File "/tmp/tmpcjqrw0s3/tmp0tvfwix9.py", line 1, in <module>
a = int(input(""))
^^^^^^^^^
EOFError: EOF when reading a line
| |
s274753209 | p02389 | u313021086 | 1518165834 | Python | Python | py | Runtime Error | 0 | 0 | 80 | a, b = map(int, input().split())
print(str(a * b) + " " + str(2 * a + 2 * b))
| Traceback (most recent call last):
File "/tmp/tmppnhqiy3k/tmp2bi2nej3.py", line 1, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s334139318 | p02389 | u496101640 | 1518380315 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | x = int(input())**2
y = int(input())**2
print("{0:d} {1:d}".format(x,y))
| Traceback (most recent call last):
File "/tmp/tmpdhjo1lso/tmp2g8k6myz.py", line 1, in <module>
x = int(input())**2
^^^^^^^
EOFError: EOF when reading a line
| |
s997503677 | p02389 | u722929725 | 1518417079 | Python | Python | py | Runtime Error | 0 | 0 | 129 | rect = input()
listrect = rect.split(" ")
sum = 0
for i in range(len(listrect))
sum = sum + int(listrect[i]) * 2
print(sum)
| File "/tmp/tmpnnfjvwt3/tmp5zzwpyot.py", line 4
for i in range(len(listrect))
^
SyntaxError: expected ':'
| |
s910813229 | p02389 | u373340964 | 1519093348 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a, b = map(int, input().split())
print(a * b, 2(a + b))
| /tmp/tmp6169zm0s/tmpuhgm5nwk.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(a * b, 2(a + b))
Traceback (most recent call last):
File "/tmp/tmp6169zm0s/tmpuhgm5nwk.py", line 1, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s307789536 | p02389 | u373340964 | 1519093646 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a, b = map(int, input().split())
print(a * b, 2(a + b))
| /tmp/tmp2jocg0n2/tmpr1zw717t.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(a * b, 2(a + b))
Traceback (most recent call last):
File "/tmp/tmp2jocg0n2/tmpr1zw717t.py", line 1, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s046135584 | p02389 | u373340964 | 1519093784 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | a, b = map(int, input().split())
print(a * b, 2(a + b))
| /tmp/tmp5p2kzx3p/tmpice8vlmn.py:2: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
print(a * b, 2(a + b))
Traceback (most recent call last):
File "/tmp/tmp5p2kzx3p/tmpice8vlmn.py", line 1, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s390944787 | p02389 | u387507798 | 1519361489 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | h, w = map(int, input().split())
print(h*w)
print(2*h + 2*w)
| File "/tmp/tmp67ztna9o/tmpgx3hub1t.py", line 1
h, w = map(int, input().split())
IndentationError: unexpected indent
| |
s735372093 | p02389 | u387507798 | 1519361673 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | h, w = map(int, src.input().split())
print(h*w, 2*h+2*w)
| File "/tmp/tmp63utnrpq/tmpe6im4awx.py", line 1
h, w = map(int, src.input().split())
IndentationError: unexpected indent
| |
s172113888 | p02389 | u387507798 | 1519361682 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | h, w = map(int, input().split())
print(h*w, 2*h+2*w)
| File "/tmp/tmp9bhou5lp/tmpw97lhv8d.py", line 1
h, w = map(int, input().split())
IndentationError: unexpected indent
| |
s600611272 | p02389 | u005739171 | 1519542845 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | a = int(input('tate'))
b = int(input('yoko'))
area = a*b
lenght = 2a + 2b
print(area)
print(lenght)
| File "/tmp/tmpuc1kcgg9/tmp_fh4eaa3.py", line 4
lenght = 2a + 2b
^
SyntaxError: invalid decimal literal
| |
s859713309 | p02389 | u005739171 | 1519542989 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a = int(input('tate'))
b = int(input('yoko'))
area = a*b
lenght = 2*a + 2*b
print(area)
print(lenght)
| Traceback (most recent call last):
File "/tmp/tmpogo_0fw9/tmpe3i212oi.py", line 1, in <module>
a = int(input('tate'))
^^^^^^^^^^^^^
EOFError: EOF when reading a line
| tate |
s331534436 | p02389 | u005739171 | 1519543012 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a = int(input('tate'))
b = int(input('yoko'))
area = a*b
lenght = 2*a + 2*b
print(area)
print(lenght)
| Traceback (most recent call last):
File "/tmp/tmpxcgf29vg/tmpubi249_q.py", line 1, in <module>
a = int(input('tate'))
^^^^^^^^^^^^^
EOFError: EOF when reading a line
| tate |
s930692678 | p02389 | u005739171 | 1519543098 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | a = int(input('tate')) b = int(input('yoko'))
area = a*b
lenght = 2*a + 2*b
print(area) print(lenght)
| File "/tmp/tmpygno5n0e/tmprmao965l.py", line 1
a = int(input('tate')) b = int(input('yoko'))
^
SyntaxError: invalid syntax
| |
s259113213 | p02389 | u005739171 | 1519543114 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | a = int(input('')) b = int(input(''))
area = a*b
lenght = 2*a + 2*b
print(area) print(lenght)
| File "/tmp/tmpbstiiojj/tmp4j8vsszn.py", line 1
a = int(input('')) b = int(input(''))
^
SyntaxError: invalid syntax
| |
s630203037 | p02389 | u316702155 | 1519615888 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | z = input()
z = z.split( )
a = z[0] * z[1]
b = z[0] * 2 + z[1] * 2
print(a + " " + b)
| Traceback (most recent call last):
File "/tmp/tmppyia2074/tmphjditsvq.py", line 1, in <module>
z = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s932195837 | p02389 | u592769330 | 1520155385 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | a=input()
b=input()
print("{} {}".format(a*b,a**2+b**2))
| Traceback (most recent call last):
File "/tmp/tmp84tfhczz/tmpx0t_5k8v.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s268661082 | p02389 | u592769330 | 1520155467 | Python | Python3 | py | Runtime Error | 0 | 0 | 53 | a,b=input()
print("{0} {1}".format(a*b,a**2+b**2))
| Traceback (most recent call last):
File "/tmp/tmp5s_ch9cn/tmpma2chs5v.py", line 1, in <module>
a,b=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s134711465 | p02389 | u592769330 | 1520155513 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | a=input()
b=input()
print('{0} {1}'.format(a*b,a**2+b**2))
| Traceback (most recent call last):
File "/tmp/tmpbitqcygd/tmp_i6tt_wr.py", line 1, in <module>
a=input()
^^^^^^^
EOFError: EOF when reading a line
| |
s651096920 | p02389 | u806005289 | 1520239967 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | import math
a=int(input())
b=int(input())
c=a*b
d=math.sqrt(a*a+b*b)
print(str(c)+" "+str(d))
| Traceback (most recent call last):
File "/tmp/tmpbnsy54vo/tmp3hwzawyt.py", line 2, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s045166677 | p02389 | u806005289 | 1520240519 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a=int(input())
b=int(input())
c=a*b
d=2*a+2*b
print(str(c)+" "+str(d))
| Traceback (most recent call last):
File "/tmp/tmp0kbvdnws/tmpm4xl7iox.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s763597420 | p02389 | u508054630 | 1520348216 | Python | Python | py | Runtime Error | 0 | 0 | 97 | a, b = list(map(int,input().split(' ')))
A = int(a*b)
S=int(2*(a+b))
print(str(A) + ' '+ str(S))
| Traceback (most recent call last):
File "/tmp/tmpbgofs6wr/tmpgawcl5jm.py", line 1, in <module>
a, b = list(map(int,input().split(' ')))
^^^^^^^
EOFError: EOF when reading a line
| |
s022130911 | p02389 | u508054630 | 1520348300 | Python | Python | py | Runtime Error | 0 | 0 | 110 | a = list(map(int,input().split(' ')))
A = int(a[0] * a[1])
S=int(2*(a[0] + a[1]))
print(str(A) + ' '+ str(S))
| Traceback (most recent call last):
File "/tmp/tmpc865s338/tmp71ywwv3u.py", line 1, in <module>
a = list(map(int,input().split(' ')))
^^^^^^^
EOFError: EOF when reading a line
| |
s605114834 | p02389 | u770401549 | 1520511977 | Python | Python | py | Runtime Error | 0 | 0 | 30 | a,b=imput()
print a*b,(a+b)*2
| File "/tmp/tmpsam39pit/tmpp1gty8l9.py", line 2
print a*b,(a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s201854122 | p02389 | u770401549 | 1520512018 | Python | Python | py | Runtime Error | 0 | 0 | 30 | a,b=input()
print a*b,(a+b)*2
| File "/tmp/tmpcll1k8a6/tmpamo09deu.py", line 2
print a*b,(a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s924415671 | p02389 | u770401549 | 1520518689 | Python | Python | py | Runtime Error | 0 | 0 | 28 | a,b=map()
print a*b,(a+b)*2
| File "/tmp/tmpzw32ec_y/tmpocnspf02.py", line 2
print a*b,(a+b)*2
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s454301156 | p02389 | u162658314 | 1520583588 | Python | Python3 | py | Runtime Error | 0 | 0 | 46 | a=int(input())
b=int(input())
print(a*2+b*2)
| Traceback (most recent call last):
File "/tmp/tmpzz2ksm7l/tmp5nfldm4o.py", line 1, in <module>
a=int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s031555050 | p02389 | u009101629 | 1520738116 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | lis = [int(x)for x in input().split()]
print(str(lis[0]*lis[1]) + " " + str((lis[0]+lis[1])*2)
| File "/tmp/tmplvbhv4sc/tmp6rhz4a4g.py", line 2
print(str(lis[0]*lis[1]) + " " + str((lis[0]+lis[1])*2)
^
SyntaxError: '(' was never closed
| |
s732885826 | p02389 | u087819206 | 1520779864 | Python | Python3 | py | Runtime Error | 0 | 0 | 61 | a, b = int(input()), int(input())
print(a * b, 2 * (a + b))
| Traceback (most recent call last):
File "/tmp/tmpt01x9ymd/tmp7ydr0cq1.py", line 1, in <module>
a, b = int(input()), int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s800472953 | p02389 | u087819206 | 1520780000 | Python | Python3 | py | Runtime Error | 0 | 0 | 64 | a, b = map(int, raw_input().split())
print(a * b, 2 * (a + b))
| Traceback (most recent call last):
File "/tmp/tmpnyk9170q/tmppgvnc3dt.py", line 1, in <module>
a, b = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s446268579 | p02389 | u087819206 | 1520780043 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | x = map(int, raw_input().split())
a, b = x[0], x[1]
print(a * b, 2 * (a + b))
| Traceback (most recent call last):
File "/tmp/tmp0dgunxbx/tmp9eo1i3oc.py", line 1, in <module>
x = map(int, raw_input().split())
^^^^^^^^^
NameError: name 'raw_input' is not defined
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.