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
s148204705
p02392
u104114903
1509511817
Python
Python
py
Runtime Error
0
0
151
inputStr = raw_input().split(' ') a = int(inputStr[0]) b = int(inputStr[1]) c = int(inputStr[2]) if(a < b && b < c): print("Yes") else: print("No")
File "/tmp/tmpyn7_wwpk/tmpi3i1ltns.py", line 5 if(a < b && b < c): ^ SyntaxError: invalid syntax
s111221293
p02392
u104114903
1509511969
Python
Python3
py
Runtime Error
0
0
149
inputStr = raw_input().split(' ') a = int(inputStr[0]) b = int(inputStr[1]) c = int(inputStr[2]) if a < b & b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpa3iwv8r9/tmpoao2em2u.py", line 1, in <module> inputStr = raw_input().split(' ') ^^^^^^^^^ NameError: name 'raw_input' is not defined
s709550918
p02392
u650657239
1509778418
Python
Python3
py
Runtime Error
0
0
101
nums = [int(i) for i in input().split()] if a < b and b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpgi5tow9n/tmp4fkifduw.py", line 2, in <module> nums = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s412562115
p02392
u409699893
1510738698
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int,raw_input().split()) if a>b and b > c: print ("Yes") else print ("No")
File "/tmp/tmpry1y4q7d/tmptom68shc.py", line 4 else ^ SyntaxError: expected ':'
s697035637
p02392
u409699893
1510738765
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int,raw_input().split()) if a > b and b > c: print ("Yes") else print ("No")
File "/tmp/tmpzyq6ppy5/tmpp1756t8f.py", line 4 else ^ SyntaxError: expected ':'
s151289433
p02392
u409699893
1510738907
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int,raw_input().split()) if a < b and b < c: print ("Yes") else print ("No")
File "/tmp/tmpahemlrl8/tmpwi0ncaso.py", line 4 else ^ SyntaxError: expected ':'
s293615334
p02392
u409699893
1510738947
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int,raw_input().split()) if a < b and b < c: print ('Yes') else print ('No')
File "/tmp/tmpawolax5i/tmp_kkvjctx.py", line 4 else ^ SyntaxError: expected ':'
s717285165
p02392
u409699893
1510739006
Python
Python
py
Runtime Error
0
0
91
a,b,c=map(int, raw_input().split()) if a < b and b < c: print ('Yes') else print ('No')
File "/tmp/tmpt9wire2a/tmp1jm1tqch.py", line 4 else ^ SyntaxError: expected ':'
s784223083
p02392
u488038316
1511159394
Python
Python
py
Runtime Error
0
0
275
# -*-coding:utf-8 import fileinput import math def main(): for line in fileinput.input(): a, b, c = map(int, line.strip().split()) if(a < b && b <c): print('Yes') else: print('No') if __name__ == '__main__': main()
File "/tmp/tmpl2vs9ba1/tmp72a32a2z.py", line 11 if(a < b && b <c): ^ SyntaxError: invalid syntax
s260826863
p02392
u488038316
1511159401
Python
Python3
py
Runtime Error
0
0
275
# -*-coding:utf-8 import fileinput import math def main(): for line in fileinput.input(): a, b, c = map(int, line.strip().split()) if(a < b && b <c): print('Yes') else: print('No') if __name__ == '__main__': main()
File "/tmp/tmppluzwjd9/tmpnv_kg4gz.py", line 11 if(a < b && b <c): ^ SyntaxError: invalid syntax
s170948462
p02392
u150984829
1513048812
Python
Python3
py
Runtime Error
0
0
71
a,b,c=map(int,input().split()) if a<b<c: print("Yes") elif: print("No")
File "/tmp/tmpv6o0kwuo/tmpsyz42pxr.py", line 3 elif: print("No") ^ SyntaxError: invalid syntax
s026860865
p02392
u150984829
1513083013
Python
Python3
py
Runtime Error
0
0
54
a,b,c=map(int,input().split()) print(a<b<c?"Yes":"No")
File "/tmp/tmpdwng60fr/tmpfjiba86l.py", line 2 print(a<b<c?"Yes":"No") ^ SyntaxError: invalid syntax
s625035531
p02392
u150984829
1513083033
Python
Python3
py
Runtime Error
0
0
58
a,b,c=map(int,input().split()) d=a<b<c?"Yes":"No" print(d)
File "/tmp/tmpgvb5frk4/tmp4x9a4sb4.py", line 2 d=a<b<c?"Yes":"No" ^ SyntaxError: invalid syntax
s315504336
p02392
u150984829
1513083042
Python
Python3
py
Runtime Error
0
0
62
a,b,c=map(int,input().split()) d=a<b<c ? "Yes" : "No" print(d)
File "/tmp/tmpasqixjb5/tmpcyp5unlc.py", line 2 d=a<b<c ? "Yes" : "No" ^ SyntaxError: invalid syntax
s503126393
p02392
u423320231
1513348511
Python
Python3
py
Runtime Error
0
0
88
a,b,c = map(int,input().split()) if(a<b && b<c): print("Yes") else: print("No")
File "/tmp/tmp03p57d_h/tmp_zs3nwcv.py", line 3 if(a<b && b<c): ^ SyntaxError: invalid syntax
s412056599
p02392
u058433718
1513447128
Python
Python
py
Runtime Error
0
0
109
data = input() a, b, c = [int(i) for i in data.split()] if a < b < c: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpwi6q_zk6/tmpwvinjs8b.py", line 1, in <module> data = input() ^^^^^^^ EOFError: EOF when reading a line
s508847151
p02392
u830563109
1513558506
Python
Python3
py
Runtime Error
0
0
98
a = int(input()) b = int(input()) c = int(input()) if (a < b < c): print("Yes") else: print("No")
File "/tmp/tmpqg9zj2ay/tmp8vb1r2br.py", line 6 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 5
s498402417
p02392
u830563109
1513558648
Python
Python3
py
Runtime Error
0
0
96
a = int(input()) b = int(input()) c = int(input()) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmp7po5fw07/tmpqqbc9os7.py", line 6 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 5
s500369687
p02392
u830563109
1513559055
Python
Python3
py
Runtime Error
0
0
105
a = int(input()) b = int(input()) c = int(input()) if a,b,c == a < b < c: print("Yes") else: print("No")
File "/tmp/tmpy_9wdi7_/tmpxtih6i8k.py", line 5 if a,b,c == a < b < c: ^ SyntaxError: invalid syntax
s850944438
p02392
u830563109
1513559106
Python
Python3
py
Runtime Error
0
0
96
a = int(input()) b = int(input()) c = int(input()) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmpd_pd3ub5/tmpklh215b_.py", line 6 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 5
s165724255
p02392
u830563109
1513559186
Python
Python3
py
Runtime Error
0
0
106
a = int(input()) b = int(input()) c = int(input()) if a < b < c: print("Yes") elif a > b > c: print("No")
File "/tmp/tmph2wu4tjs/tmpmu49adqx.py", line 6 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 5
s305735574
p02392
u830563109
1513559340
Python
Python3
py
Runtime Error
0
0
75
a,b,c = map(int(input).split) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmpb3y_ofww/tmpx0j00i2p.py", line 4 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 3
s419777199
p02392
u830563109
1513559382
Python
Python3
py
Runtime Error
0
0
76
a,b,c = map(int, input(split)) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmp5o20r0p_/tmpta7g4nkg.py", line 4 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 3
s201018586
p02392
u830563109
1513559424
Python
Python3
py
Runtime Error
0
0
77
a,b,c = map(int, input()split)) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmpnwgoz0df/tmp0ced7r_k.py", line 1 a,b,c = map(int, input()split)) ^ SyntaxError: unmatched ')'
s954544329
p02392
u830563109
1513559472
Python
Python3
py
Runtime Error
0
0
79
a,b,c = map(int, input().split()) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmpt0ifkqw6/tmprfpyzlwl.py", line 4 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 3
s454746608
p02392
u830563109
1513559523
Python
Python3
py
Runtime Error
0
0
81
a, b, c = map(int, input().split()) if a < b < c: print("Yes") else: print("No")
File "/tmp/tmp__guz454/tmputpf_u5z.py", line 4 print("Yes") ^ IndentationError: expected an indented block after 'if' statement on line 3
s212111802
p02392
u457499538
1513777791
Python
Python
py
Runtime Error
0
0
93
a,b,c = map(int, raw_input().split()) if a < b && b < c : print "Yes" else print "No"
File "/tmp/tmpp9gm1yhh/tmpn_6b2gmm.py", line 2 if a < b && b < c : ^ SyntaxError: invalid syntax
s521852456
p02392
u009288816
1515240300
Python
Python
py
Runtime Error
0
0
225
a = raw_input() a = a.split() for i in range(0,len(a)): a[i] = int(a[i]) b = sorted(a) for i in range(0,len(a)): if(a[i] != b[i] or a[i] == a[i+1]): print 'No' break if(i == len(a)-1): print 'Yes'
File "/tmp/tmpu260ps83/tmpblosxad8.py", line 8 print 'No' ^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s301976465
p02392
u179070318
1515918857
Python
Python3
py
Runtime Error
0
0
90
a,b,c = [int(x) for x input().split( )] if a<b<c: print('Yes') else: print('No')
File "/tmp/tmpgp78rn12/tmpqih58xqs.py", line 1 a,b,c = [int(x) for x input().split( )] ^^^^^^^^^^^^^^^^^^ SyntaxError: invalid syntax. Perhaps you forgot a comma?
s372575420
p02392
u265901776
1516105711
Python
Python3
py
Runtime Error
0
0
59
if a < b and b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpo859tya4/tmpxo4bwa71.py", line 1, in <module> if a < b and b < c: ^ NameError: name 'a' is not defined
s758765811
p02392
u265901776
1516105767
Python
Python3
py
Runtime Error
0
0
59
if a < b and b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp6hdvszcs/tmp6g3ypdd8.py", line 1, in <module> if a < b and b < c: ^ NameError: name 'a' is not defined
s532155905
p02392
u139687801
1517681784
Python
Python3
py
Runtime Error
0
0
97
a,b,c = map(int, input().split(',')) if a < b and b < c: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmp5t2hvfzn/tmpp4ydunxt.py", line 1, in <module> a,b,c = map(int, input().split(',')) ^^^^^^^ EOFError: EOF when reading a line
s654330156
p02392
u139687801
1517682108
Python
Python3
py
Runtime Error
0
0
96
a,b,c = map(int, input().split(',')) if a < b and b < c: print('Yes') else: print('No')
Traceback (most recent call last): File "/tmp/tmpnq8uct6f/tmpa70c_ulv.py", line 1, in <module> a,b,c = map(int, input().split(',')) ^^^^^^^ EOFError: EOF when reading a line
s526719366
p02392
u225502267
1518353622
Python
Python
py
Runtime Error
0
0
176
#include <stdio.h> int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); if(a < b || b < c){ printf("Yes\n"); }else{ printf("No\n"); } }
File "/tmp/tmpoc3f0wc0/tmph95gvnrz.py", line 3 int main(){ ^^^^ SyntaxError: invalid syntax
s202442861
p02392
u959628716
1518353719
Python
Python
py
Runtime Error
0
0
45
a = sort(raw_input()) print a[0],a[1],a[2]
File "/tmp/tmpymbn72_6/tmpe2a1mpbw.py", line 4 print a[0],a[1],a[2] ^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s611632544
p02392
u671760895
1518537770
Python
Python
py
Runtime Error
0
0
122
l = map(int, raw_input().split()) a = l[0] b = l[1] c = l[2] if a < b && b < c : print('Yes') else: print('No')
File "/tmp/tmp4u3twv_a/tmpqcl_uels.py", line 7 if a < b && b < c : ^ SyntaxError: invalid syntax
s515483602
p02392
u225502267
1518706703
Python
Python
py
Runtime Error
0
0
176
#include <stdio.h> int main(){ int a, b, c; scanf("%d %d %d", &a, &b, &c); if(a < b || b < c){ printf("Yes\n"); }else{ printf("No\n"); } }
File "/tmp/tmpem6t3e0x/tmp_qxwrjgj.py", line 3 int main(){ ^^^^ SyntaxError: invalid syntax
s954330692
p02392
u373340964
1519108088
Python
Python3
py
Runtime Error
0
0
110
a = list(map(int, input())) a.sort() maped_list = map(str, a) mojiretsu = ','.join( a ) print(mojiretsu)
Traceback (most recent call last): File "/tmp/tmpdnv048wp/tmpgnkbdcsn.py", line 1, in <module> a = list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s370706510
p02392
u373340964
1519108163
Python
Python3
py
Runtime Error
0
0
109
a = list(map(int, input())) a.sort() maped_list = map(str, a) mojiretsu = ' '.join( a ) print(mojiretsu)
Traceback (most recent call last): File "/tmp/tmpwg4j3sgo/tmpvmquu9_4.py", line 1, in <module> a = list(map(int, input())) ^^^^^^^ EOFError: EOF when reading a line
s254234441
p02392
u017435045
1520680946
Python
Python3
py
Runtime Error
0
0
90
a,b,c=map(int, input().split()) if a<b and b<c: print(‘Yes’) else: print(’No’)
File "/tmp/tmp48rqnu00/tmpydvo1416.py", line 3 print(‘Yes’) ^ SyntaxError: invalid character '‘' (U+2018)
s961377535
p02392
u229478139
1521296904
Python
Python3
py
Runtime Error
0
0
188
def funcs(a, b, c): x = int(a) y = int(b) z = int(c) if x < y < z: print("Yes") else: print("No") tmp = input() a, b = tmp.split(" ") funcs(a, b)
Traceback (most recent call last): File "/tmp/tmp2l9_vyib/tmpidmwx79l.py", line 12, in <module> tmp = input() ^^^^^^^ EOFError: EOF when reading a line
s697722477
p02392
u921303861
1521410171
Python
Python3
py
Runtime Error
0
0
78
A = int(input()) if (0<=A and A<=100): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpdvq46c5q/tmpinkdys90.py", line 1, in <module> A = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s241194414
p02392
u921303861
1521410272
Python
Python3
py
Runtime Error
0
0
78
A = int(input()) if (0<=A and A<=100): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmplmn2jj42/tmpy84u7fl6.py", line 1, in <module> A = int(input()) ^^^^^^^ EOFError: EOF when reading a line
s352427757
p02392
u464859367
1521711269
Python
Python3
py
Runtime Error
0
0
131
n = input().split() n = n.split() n = [int(i) for i in n] if(n[0] < n[1] and n[1] < n[2]): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpnpigidxl/tmpe_4ha08n.py", line 1, in <module> n = input().split() ^^^^^^^ EOFError: EOF when reading a line
s223082426
p02392
u621084859
1522373777
Python
Python3
py
Runtime Error
0
0
95
a=int(input()) b=int(input()) c=int(input()) if a < b < c: print("yes") else: print("no")
Traceback (most recent call last): File "/tmp/tmpgc4c57u_/tmp7ja1jbzs.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s183067594
p02392
u621084859
1522382652
Python
Python3
py
Runtime Error
0
0
97
a=int(input()) b=int(input()) c=int(input()) if a < b < c: print("yes") else: print("no")
Traceback (most recent call last): File "/tmp/tmpojwitkgr/tmp0nvqymi6.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s518747654
p02392
u621084859
1522383096
Python
Python3
py
Runtime Error
0
0
101
a=int(input()) b=int(input()) c=int(input()) if a < b and b < c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp7l886wym/tmpabhin1_b.py", line 1, in <module> a=int(input()) ^^^^^^^ EOFError: EOF when reading a line
s102981662
p02392
u695099631
1523078996
Python
Python3
py
Runtime Error
0
0
121
num = raw_input().split(" ") a = num[0] b = num[1] c = num[2] if a<b and b<c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpnuvou_m2/tmpinx8_q8f.py", line 1, in <module> num = raw_input().split(" ") ^^^^^^^^^ NameError: name 'raw_input' is not defined
s754341411
p02392
u244493040
1523185648
Python
Python3
py
Runtime Error
0
0
58
a,b,c=map(int,input().split()) print([a<b<c]['No','Yes'])
/tmp/tmp9mla169i/tmp2inquy2v.py:2: SyntaxWarning: list indices must be integers or slices, not tuple; perhaps you missed a comma? print([a<b<c]['No','Yes']) Traceback (most recent call last): File "/tmp/tmp9mla169i/tmp2inquy2v.py", line 1, in <module> a,b,c=map(int,input().split()) ^^^^^^^ EOFError: EOF when reading a line
s287835828
p02392
u781194524
1523860252
Python
Python3
py
Runtime Error
0
0
93
a,b,c=[int() for x in input().split] if a<b: if b<c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpvw8_5hg3/tmpyh5sypir.py", line 1, in <module> a,b,c=[int() for x in input().split] ^^^^^^^ EOFError: EOF when reading a line
s469660581
p02392
u781194524
1523860273
Python
Python3
py
Runtime Error
0
0
93
a,b,c=[int() for x in input().split] if a<b: if b<c: print("Yes") elif: print("No")
File "/tmp/tmp1jxzfr2v/tmp8uw6x8vs.py", line 5 elif: ^ SyntaxError: invalid syntax
s030959146
p02392
u781194524
1523860481
Python
Python
py
Runtime Error
0
0
89
a,b,c=[int(x) for x in input().split()] if a<b<c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpvfqpiv22/tmpi4nj7zb0.py", line 1, in <module> a,b,c=[int(x) for x in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s664211943
p02392
u602702913
1523866768
Python
Python3
py
Runtime Error
0
0
172
#include <stdio.h> int main(void){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if (a<b<c){ printf("Yes\n"); } else{ printf("No\n"); } }
File "/tmp/tmpxjf6owca/tmpb25qbomi.py", line 2 int main(void){ ^^^^ SyntaxError: invalid syntax
s772778896
p02392
u602702913
1523866776
Python
Python3
py
Runtime Error
0
0
172
#include <stdio.h> int main(void){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if (a<b<c){ printf("Yes\n"); } else{ printf("No\n"); } }
File "/tmp/tmprix_uh7g/tmp3cj7syde.py", line 2 int main(void){ ^^^^ SyntaxError: invalid syntax
s879774315
p02392
u843169619
1523868935
Python
Python3
py
Runtime Error
0
0
97
a = list(map(input().split())) if a[0] =< a[1] =< a[2]: print('Yes') else: print('No')
File "/tmp/tmpojhurq0_/tmpd54hq1ab.py", line 4 if a[0] =< a[1] =< a[2]: ^ SyntaxError: invalid syntax
s045356840
p02392
u843169619
1523869139
Python
Python3
py
Runtime Error
0
0
100
a = list(map(int,input().split()) if a[0] =< a[1] =< a[2]: print('Yes') else: print('No')
File "/tmp/tmpti3x0x6b/tmpl6wowpeu.py", line 2 a = list(map(int,input().split()) ^ SyntaxError: '(' was never closed
s469911525
p02392
u843169619
1523869780
Python
Python3
py
Runtime Error
0
0
102
a = list(map(int, input().split())) if a[0] =< a[1] =< a[2]: print('Yes') else: print('No')
File "/tmp/tmp89z0wud_/tmp9458gons.py", line 4 if a[0] =< a[1] =< a[2]: ^ SyntaxError: invalid syntax
s864734263
p02392
u215863296
1524041434
Python
Python3
py
Runtime Error
0
0
42
print(A)
Traceback (most recent call last): File "/tmp/tmpi4uybo1k/tmp7bp_j3g5.py", line 1, in <module> print(A) ^ NameError: name 'A' is not defined
s594995671
p02392
u485986915
1524217975
Python
Python3
py
Runtime Error
0
0
84
a,b,c = map(int,input().split) if a > b > c: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpeuta370b/tmpqcfx8wry.py", line 1, in <module> a,b,c = map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s042490077
p02392
u876060624
1524668239
Python
Python3
py
Runtime Error
0
0
89
a,b,c = map(int,input().split()) if a < b and b < c : print('Yes') else print('No')
File "/tmp/tmp1idjeicq/tmp1fdmh4mc.py", line 4 else ^ SyntaxError: expected ':'
s586344793
p02392
u876060624
1524668505
Python
Python3
py
Runtime Error
0
0
92
a,b,c = map(int,input().split()) if a < b and b < c : print('Yes') else: print('No')
File "/tmp/tmp5x1a67gq/tmpsgh8lrii.py", line 4 else: ^ SyntaxError: invalid character ':' (U+FF1A)
s948604441
p02392
u379340960
1524833369
Python
Python
py
Runtime Error
0
0
90
a, b, c = map(int, input().split()) ans = "No" if a < b < c: ans = "Yes" print (ans)
Traceback (most recent call last): File "/tmp/tmp0_w1s4qg/tmpxnee3ll7.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s201597134
p02392
u555852413
1526380400
Python
Python3
py
Runtime Error
0
0
115
import sys a,b,c = map(int,sys.stdin.readline().split()) if a < b && b < c: print("Yes") else: print("No")
File "/tmp/tmpg0w293ys/tmpf1s3lgyr.py", line 3 if a < b && b < c: ^ SyntaxError: invalid syntax
s962205644
p02392
u527389300
1526621637
Python
Python3
py
Runtime Error
0
0
108
a, b ,c = map(int, input().split()) if a < b: if b < c: print("YES") return print('NO')
File "/tmp/tmpukfio62k/tmppoateco2.py", line 5 return ^^^^^^ SyntaxError: 'return' outside function
s786755340
p02392
u527389300
1526621655
Python
Python3
py
Runtime Error
0
0
99
a, b ,c = map(int, input().split()) if a < b: if b < c: print("YES") else: print('NO')
File "/tmp/tmpg2b7442l/tmp9iqi9pj6.py", line 6 print('NO') ^ IndentationError: expected an indented block after 'else' statement on line 5
s384922545
p02392
u944658202
1527226794
Python
Python3
py
Runtime Error
0
0
89
a,b,c=map(int,input().split) if a<b and b<a: print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmpg7_mkmfi/tmpp5cagroz.py", line 1, in <module> a,b,c=map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line
s973522619
p02392
u007066325
1527451445
Python
Python3
py
Runtime Error
0
0
94
a,b,c = map (int, input().split()) if a < b && b < c: print("Yes") else: print("No")
File "/tmp/tmpp2mu1apa/tmptmm5e4dy.py", line 2 if a < b && b < c: ^ SyntaxError: invalid syntax
s256543841
p02392
u007066325
1527451522
Python
Python3
py
Runtime Error
0
0
99
a,b,c = map (int, input().split()) if a < b: elif b<c: print("Yes") else: print("No")
File "/tmp/tmpaquvmmao/tmp5gpiixg8.py", line 3 elif b<c: ^^^^ SyntaxError: invalid syntax
s666485712
p02392
u777126276
1529201312
Python
Python3
py
Runtime Error
0
0
71
a,b,c = map(int, input().split()) print "Yes" if a<b and b<c else "No"
File "/tmp/tmp702bk15y/tmpm911bzxp.py", line 2 print "Yes" if a<b and b<c else "No" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s458135705
p02392
u119807026
1529741294
Python
Python3
py
Runtime Error
0
0
101
d = input() a, b, c = map(d.split()) if (a < b) and (b < c): print("Yes") else: print("No")
Traceback (most recent call last): File "/tmp/tmp084aed0m/tmp9v8y0tlv.py", line 1, in <module> d = input() ^^^^^^^ EOFError: EOF when reading a line
s738230169
p02392
u282635979
1362749213
Python
Python
py
Runtime Error
0
0
88
x = map(int,raw_input().split(' ')) if a < b and b < c: print('YES') else: print('NO')
Traceback (most recent call last): File "/tmp/tmp46fcvw3b/tmp1ntmbh17.py", line 1, in <module> x = map(int,raw_input().split(' ')) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s301834862
p02392
u763301852
1363005988
Python
Python
py
Runtime Error
0
0
131
a, b = map(int, raw_input().split()) s = "" if a < b: s = "a < b" elif a > b: s = "a > b" else: s = "a == b" print(s)
Traceback (most recent call last): File "/tmp/tmpiau4318m/tmpc5ixcpmf.py", line 1, in <module> a, b = map(int, raw_input().split()) ^^^^^^^^^ NameError: name 'raw_input' is not defined
s282380497
p02392
u912237403
1371206866
Python
Python
py
Runtime Error
0
0
89
a,b,c = map(int, raw_input().split() if a<b and b<c: c='Yes' else: c='No' print c
File "/tmp/tmp45rdbblz/tmp9le2c8po.py", line 1 a,b,c = map(int, raw_input().split() ^ SyntaxError: '(' was never closed
s664723836
p02392
u063179562
1389968185
Python
Python
py
Runtime Error
0
0
76
a,b,c = map(int,raw_input()) if a<b<c: print "YES" else: print "NO"
File "/tmp/tmp45_k_yvm/tmpu9yu69h_.py", line 4 print "YES" ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s236766733
p02392
u633068244
1393314463
Python
Python
py
Runtime Error
0
0
107
a,b,c = map(int, raw_input().split()) if a < b: if b < c: print "Yes"\n else: print "No"\n
File "/tmp/tmpbwdojlxk/tmpmue5ausv.py", line 5 print "Yes"\n ^ SyntaxError: unexpected character after line continuation character
s365955564
p02392
u633068244
1393913846
Python
Python
py
Runtime Error
0
0
114
a, b, c = gets.split(" ") a, b, c = a.to_i, b.to_i, c.to_i if a < b && b < c puts "YES" else puts "NO" end
File "/tmp/tmpz8zprnmf/tmpc86c47q0.py", line 3 if a < b && b < c ^ SyntaxError: invalid syntax
s837705047
p02392
u633068244
1393913891
Python
Python
py
Runtime Error
0
0
114
a, b, c = gets.split(" ") a, b, c = a.to_i, b.to_i, c.to_i if a < b && b < c puts "YES" else puts "NO" end
File "/tmp/tmpu4637vpc/tmpzicdqkb_.py", line 3 if a < b && b < c ^ SyntaxError: invalid syntax
s084221144
p02392
u633068244
1393913921
Python
Python
py
Runtime Error
0
0
120
a, b, c = gets.chomp.split(" ") a, b, c = a.to_i, b.to_i, c.to_i if a < b && b < c puts "YES" else puts "NO" end
File "/tmp/tmp9au3n273/tmpn7o41to8.py", line 3 if a < b && b < c ^ SyntaxError: invalid syntax
s381389333
p02392
u633068244
1393913961
Python
Python
py
Runtime Error
0
0
120
a, b, c = gets.chomp.split(" ") a, b, c = a.to_i, b.to_i, c.to_i if a < b && b < c puts "YES" else puts "NO" end
File "/tmp/tmpvcjcy0h7/tmp68o0jyrl.py", line 3 if a < b && b < c ^ SyntaxError: invalid syntax
s315013471
p02392
u971748390
1398306799
Python
Python
py
Runtime Error
0
0
82
a,b,c=map(int,raw_input().split()) if(a<b and b<c) : print 'Yes' else print 'No'
File "/tmp/tmp66nm_vz8/tmpsj458t9m.py", line 3 print 'Yes' ^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s918544020
p02393
u467175809
1531293714
Python
Python3
py
Runtime Error
0
0
108
hoge = list(map(int, input().split())) ret = sorted(hoge) print(str(ret[0]+" "+str(ret[1])+" "+str(ret[2]))
File "/tmp/tmp159c84h6/tmptf4lgb4x.py", line 3 print(str(ret[0]+" "+str(ret[1])+" "+str(ret[2])) ^ SyntaxError: '(' was never closed
s387286777
p02393
u467175809
1531293732
Python
Python3
py
Runtime Error
0
0
108
hoge = list(map(int, input().split())) ret = sorted(hoge) print(str(ret[0]+" "+str(ret[1])+" "+str(ret[2]))
File "/tmp/tmp6qt3nn63/tmpryq7rqux.py", line 3 print(str(ret[0]+" "+str(ret[1])+" "+str(ret[2])) ^ SyntaxError: '(' was never closed
s277545624
p02393
u452254177
1531318703
Python
Python3
py
Runtime Error
0
0
165
a,b,c = [int(i) for i in input().split()] if a<b<c : print("Yes") else : print("No") number = [int(i) for i in input().split()] number.sort() print(number)
Traceback (most recent call last): File "/tmp/tmpf4cfjo1_/tmp_svybd5d.py", line 1, in <module> a,b,c = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s320844155
p02393
u452254177
1531406427
Python
Python3
py
Runtime Error
0
0
82
number = [int(i) for i in input().split()] number.sort() print(' '.join(number))
Traceback (most recent call last): File "/tmp/tmpt0oozfbf/tmpi2uhkxsg.py", line 1, in <module> number = [int(i) for i in input().split()] ^^^^^^^ EOFError: EOF when reading a line
s084486423
p02393
u452254177
1531406804
Python
Python3
py
Runtime Error
0
0
76
number = [for i in input().split()] number.sort() print(' '.join(number))
File "/tmp/tmpjghrbij0/tmpyoawf1o9.py", line 1 number = [for i in input().split()] ^^^ SyntaxError: invalid syntax
s869207003
p02393
u281808376
1540282487
Python
Python3
py
Runtime Error
0
0
128
s=input().split() a=int(s[0]) b=int(s[1]) c=int(s[2]) num=[a,b,c] num.sort() print(str(num[0])+" "+str(num[1]+" "+str(num[2])))
Traceback (most recent call last): File "/tmp/tmpnvndceou/tmpbvpk6e8q.py", line 1, in <module> s=input().split() ^^^^^^^ EOFError: EOF when reading a line
s023709538
p02393
u281808376
1540282543
Python
Python3
py
Runtime Error
0
0
129
s=input().split() a=int(s[0]) b=int(s[1]) c=int(s[2]) num=[a,b,c] num.sort() print(str(num[0])+" "+str(num[1])+" "+str(num[2])))
File "/tmp/tmpy_poewpr/tmpqkchie77.py", line 7 print(str(num[0])+" "+str(num[1])+" "+str(num[2]))) ^ SyntaxError: unmatched ')'
s123556699
p02393
u414655445
1540288766
Python
Python
py
Runtime Error
0
0
219
a = int(input()) b = int(input()) c = int(input()) if a > b: t = a a = b b = t if b > c: t = b b = c c = t if a > b: t = a a = b b = t print a, print b, print c,
File "/tmp/tmphd8ocpfa/tmp44g6q0rd.py", line 16 print a, ^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s591940241
p02393
u354751877
1540343177
Python
Python
py
Runtime Error
0
0
115
d=raw_input() d=d.split(" ") d=list(map(int,d)) d=d.sort() a=str(d[0]) b=str(d[1]) c=str(d[2]) print a+" "+b+" "+c
File "/tmp/tmphl_ze0j9/tmpladysjjr.py", line 8 print a+" "+b+" "+c ^^^^^^^^^^^^^^^^^^^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
s087271967
p02393
u552594238
1545494560
Python
Python3
py
Runtime Error
0
0
31
a=input() b=a.split() plint(b)
Traceback (most recent call last): File "/tmp/tmpuxzu6g0a/tmpiv1ve3nd.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s998652547
p02393
u552594238
1545494581
Python
Python3
py
Runtime Error
0
0
38
a=input() b=a.split() plint(sorted.b)
Traceback (most recent call last): File "/tmp/tmpdrz8ogx5/tmpcckxtmcu.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s225370416
p02393
u552594238
1545495836
Python
Python3
py
Runtime Error
0
0
51
a=input() b=a.split() c=sorted(b) print(c[0,1,2])
Traceback (most recent call last): File "/tmp/tmpv2u62u0l/tmptxbigthz.py", line 1, in <module> a=input() ^^^^^^^ EOFError: EOF when reading a line
s174072767
p02393
u316246166
1545656788
Python
Python3
py
Runtime Error
0
0
113
a, b, c = input().split() a = int(a) b = int(b) c = int(c) x, y, z = sort(a, b, c) print(x, y, x, split=" ")
Traceback (most recent call last): File "/tmp/tmpp0_7gw3y/tmpqt22t8ue.py", line 1, in <module> a, b, c = input().split() ^^^^^^^ EOFError: EOF when reading a line
s873445158
p02393
u316246166
1545656810
Python
Python3
py
Runtime Error
0
0
102
a, b, c = input().split() a = int(a) b = int(b) c = int(c) x, y, z = sort(a, b, c) print(x, y, x)
Traceback (most recent call last): File "/tmp/tmphogw7_03/tmpoaw_acss.py", line 1, in <module> a, b, c = input().split() ^^^^^^^ EOFError: EOF when reading a line
s764691778
p02393
u316246166
1545657008
Python
Python3
py
Runtime Error
0
0
112
a, b, c = map(int, input().split()) a = int(a) b = int(b) c = int(c) x, y, z = sort(a, b, c) print(x, y, x)
Traceback (most recent call last): File "/tmp/tmp7rqyt5l_/tmpwwtunml1.py", line 1, in <module> a, b, c = map(int, input().split()) ^^^^^^^ EOFError: EOF when reading a line
s455186748
p02393
u316246166
1545657052
Python
Python3
py
Runtime Error
0
0
56
a = list.map(int, input().split()) a.sort() print(a)
Traceback (most recent call last): File "/tmp/tmpjf37k2md/tmpmhbefqij.py", line 1, in <module> a = list.map(int, input().split()) ^^^^^^^^ AttributeError: type object 'list' has no attribute 'map'
s718150180
p02393
u316246166
1545657070
Python
Python3
py
Runtime Error
0
0
71
a = list.map(int, input().split()) a.sort() print(a[0], a[1], a[2])
Traceback (most recent call last): File "/tmp/tmp69tay4_3/tmprfui0hcc.py", line 1, in <module> a = list.map(int, input().split()) ^^^^^^^^ AttributeError: type object 'list' has no attribute 'map'
s530393887
p02393
u638889288
1545662791
Python
Python3
py
Runtime Error
0
0
185
table=list(map(int,input().split())) i=2 k=0 if k < i : while table[k] > table[k+1] : table[k],table[k+1]=table[k+1],table[k] k+=1 print(table[0],table[1],table[2])
Traceback (most recent call last): File "/tmp/tmpfynxd1d5/tmp23m6dv2o.py", line 1, in <module> table=list(map(int,input().split())) ^^^^^^^ EOFError: EOF when reading a line
s535290436
p02393
u874395007
1546078319
Python
Python3
py
Runtime Error
0
0
97
data = [int(i) for i in input.split()] out = ' '.join([str(i) for i in sorted(data)]) print(out)
Traceback (most recent call last): File "/tmp/tmpmlh0v55d/tmp8c0q_x13.py", line 1, in <module> data = [int(i) for i in input.split()] ^^^^^^^^^^^ AttributeError: 'builtin_function_or_method' object has no attribute 'split'
s229890532
p02393
u498462680
1546225790
Python
Python3
py
Runtime Error
0
0
82
list=map(int,input().split) sorted = sort(list) print(' '.join(map(str, sorted)))
Traceback (most recent call last): File "/tmp/tmpivibcv3p/tmp30xhdmib.py", line 1, in <module> list=map(int,input().split) ^^^^^^^ EOFError: EOF when reading a line