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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s571428603 | p02392 | u671553883 | 1469516122 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c = int[int(i) for i in input().split()]
if a < b < c:
print('YES')
else:
print('NO') | File "/tmp/tmpg1j45ju_/tmpeow0swia.py", line 1
a,b,c = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s204279410 | p02392 | u671553883 | 1469516146 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | a,b,c = int[int(i) for i in input().split()]
if a < b < c:
print('Yes')
else:
print('No') | File "/tmp/tmp94rig13l/tmpdi1g7x9k.py", line 1
a,b,c = int[int(i) for i in input().split()]
^^^
SyntaxError: invalid syntax
| |
s082828493 | p02392 | u085472528 | 1469516306 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a, b, c = [int(i) for i input().split()]
if a<b<c:
print("yes")
else:
print("no") | File "/tmp/tmpoij8n6_3/tmpfs4y84ho.py", line 1
a, b, c = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s170657100 | p02392 | u085472528 | 1469516338 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | a, b, c = [int(i) for i input().split()]
if a < b < c:
print("yes")
else:
print("no") | File "/tmp/tmpm65wnmlz/tmphw55mfbh.py", line 1
a, b, c = [int(i) for i input().split()]
^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s301767092 | p02392 | u216425054 | 1470625938 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | [a,b,c]=int(x) for x in input().split
if a>b and b>c:
print("Yes")
else:
print("No") | File "/tmp/tmp7oi9gsc5/tmpc12c_ch6.py", line 1
[a,b,c]=int(x) for x in input().split
^^^
SyntaxError: invalid syntax
| |
s658755836 | p02392 | u216425054 | 1470626080 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | [a,b,c]=[int(x) for x in input().split]
if a>b and b>c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpqzrpyq3x/tmpz3c561o0.py", line 1, in <module>
[a,b,c]=[int(x) for x in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s869960522 | p02392 | u216425054 | 1470626143 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | [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/tmplvrt02_r/tmpnez0uzl5.py", line 1, in <module>
[a,b,c]=[int(x) for x in input().split]
^^^^^^^
EOFError: EOF when reading a line
| |
s711744382 | p02392 | u892219101 | 1473439394 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | a,b,c=map(int,input().split())
if a<b:
if b<c:
print "Yes"
sys.exit()
print("No") | File "/tmp/tmp4p9iru35/tmp9uwzd9a2.py", line 4
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s652516071 | p02392 | u362094064 | 1473918404 | Python | Python3 | py | Runtime Error | 0 | 0 | 131 | a, b = input().split(' ')
if int(a) > int(b):
print('a > b')
elif int(a) < int(b):
print('a < b')
else:
print('a == b') | Traceback (most recent call last):
File "/tmp/tmps2rrir8s/tmpryxm_n6q.py", line 1, in <module>
a, b = input().split(' ')
^^^^^^^
EOFError: EOF when reading a line
| |
s345633760 | p02392 | u362094064 | 1473919165 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | a, b, c, = input()split(' ')
if int(a) < int(b) < int(c):
print('yes')
else:
print('no') | File "/tmp/tmp3hnudjh8/tmpf99totym.py", line 1
a, b, c, = input()split(' ')
^^^^^
SyntaxError: invalid syntax
| |
s193331309 | p02392 | u393305246 | 1474109035 | Python | Python | py | Runtime Error | 0 | 0 | 111 | inl=map(int. raw_input().split())
a=inl[0]
b=inl[1]
c=inl[2]
if a<b and b<c:
print "Yes"
else:
print "No" | File "/tmp/tmppe6ll7xg/tmp4rswja8j.py", line 8
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s193088368 | p02392 | u996758922 | 1476967495 | Python | Python | py | Runtime Error | 0 | 0 | 114 | l = input().split()
l = list(map(int, l))
if l[0] < l[1] and l[1] < l[2]:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmprblmi64y/tmpfb6ljhmm.py", line 1, in <module>
l = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s548662301 | p02392 | u967794515 | 1477838230 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | # coding: utf-8
# Here your code !
a,b,c = input().split()
if(a < B < c):
print('Yes')
else:
print('No') | Traceback (most recent call last):
File "/tmp/tmp9vkmuixj/tmp9st9v05w.py", line 3, in <module>
a,b,c = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s075560008 | p02392 | u967904307 | 1478230050 | Python | Python | py | Runtime Error | 0 | 0 | 68 | a,b,c=map(int,raw_input().split(" ")
print a,b,c:("No","Yes")[a<b<c] | File "/tmp/tmptdjzch4u/tmpg_q0n_o1.py", line 1
a,b,c=map(int,raw_input().split(" ")
^
SyntaxError: '(' was never closed
| |
s353048814 | p02392 | u326248180 | 1478757423 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a, b, c = map(int, input().split())
if a < b amd b < c:
print("Yes")
else:
print("No") | File "/tmp/tmp796fy09a/tmplcfb5pkm.py", line 3
if a < b amd b < c:
^^^
SyntaxError: invalid syntax
| |
s773969995 | p02392 | u408216289 | 1479045088 | Python | Python | py | Runtime Error | 0 | 0 | 89 |
a = [int(s) for s in raw_input().split()]
if a > b > c:
print "Yes"
else
print "No" | File "/tmp/tmphhfkgw0a/tmpbhkw3sy2.py", line 4
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s655628545 | p02392 | u408216289 | 1479045134 | Python | Python | py | Runtime Error | 0 | 0 | 99 |
a = [int(s) for s in raw_input().split()]
if a[0] < a[1] < a[2]:
print "Yes"
else
print "No" | File "/tmp/tmpzjiknvfp/tmp0455r9rw.py", line 4
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s613225456 | p02392 | u725608708 | 1479357422 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | a,b,c = map(int,input().split())
if a < b < c:
print("Yes")
else:
print("No" | File "/tmp/tmpwb8qoiww/tmpjiwnn_tn.py", line 5
print("No"
^
SyntaxError: '(' was never closed
| |
s033579288 | p02392 | u165813232 | 1479357457 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a.b.c = map(int.input().split())
if a < b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpegkv8klw/tmp3l6ozwu6.py", line 1, in <module>
a.b.c = map(int.input().split())
^^^^^^^^^
AttributeError: type object 'int' has no attribute 'input'
| |
s828168783 | p02392 | u250482563 | 1479357479 | Python | Python | py | Runtime Error | 0 | 0 | 85 | a, b, c = map (int, input().split())
if a < b < c:
print("Yes")
else:
print("No")
| Traceback (most recent call last):
File "/tmp/tmp0g3h3x3h/tmpde37so54.py", line 1, in <module>
a, b, c = map (int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s823994082 | p02392 | u694307805 | 1479357541 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a,b,c = map (int, input(),split())
if a < b and < c:
print("Yes")
else:
print("No") | File "/tmp/tmp8vw38_jp/tmpwwz3x0jw.py", line 2
if a < b and < c:
^
SyntaxError: invalid syntax
| |
s846211773 | p02392 | u694307805 | 1479357582 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | a,b,c = map (int, input(),split())
if a < b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpqsf7p15v/tmp7semuaso.py", line 1, in <module>
a,b,c = map (int, input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s199969963 | p02392 | u982344959 | 1479358315 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | 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/tmpu6ad3dg8/tmp0t36gcw4.py", line 1, in <module>
a,b,c=map(int,input(),split())
^^^^^^^
EOFError: EOF when reading a line
| |
s864363912 | p02392 | u234837959 | 1481243775 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | list = input().split(" ")
a,b,c = int(list[0]),int(list[1]),int(list[2])
if a < b && b < c:
print("YES")
else:
print("NO") | File "/tmp/tmp3nm5f9zx/tmpys604awd.py", line 5
if a < b && b < c:
^
SyntaxError: invalid syntax
| |
s791302932 | p02392 | u493187281 | 1482676342 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a=int(input())
b=int(input())
c=int(input())
if a<b<c:
print("Yes")
else:
print("NO") | File "/tmp/tmpsohz14al/tmpjs3zos5f.py", line 5
print("Yes")
^
IndentationError: expected an indented block after 'if' statement on line 4
| |
s854585521 | p02392 | u493187281 | 1482676431 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a=int(input())
b=int(input())
c=int(input())
if a<b<c:
print("Yes")
else:
print("NO") | File "/tmp/tmp527r7lb2/tmp_lhg708o.py", line 5
print("Yes")
^
IndentationError: expected an indented block after 'if' statement on line 4
| |
s916942977 | p02392 | u019678978 | 1482898079 | Python | Python | py | Runtime Error | 0 | 0 | 84 | a,b,c = map(int, raw_input())
if a < b < c :
print("Yes")
else :
print("No") | Traceback (most recent call last):
File "/tmp/tmp7oerh046/tmpfxmzryc3.py", line 1, in <module>
a,b,c = map(int, raw_input())
^^^^^^^^^
NameError: name 'raw_input' is not defined
| |
s173350749 | p02392 | u159126725 | 1483939217 | Python | Python | py | Runtime Error | 0 | 0 | 97 | a, b, c = map(int, raw_input().split())
if a < b && b < c :
print 'Yes'
else :
print 'No' | File "/tmp/tmpz7ld5o5w/tmpsv2uoa1q.py", line 2
if a < b && b < c :
^
SyntaxError: invalid syntax
| |
s924046015 | p02392 | u519227872 | 1485262636 | 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/tmp2yy6gctr/tmpbw_dd61_.py", line 4
print "Yes"
^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s230668965 | p02392 | u138546245 | 1485936986 | Python | Python3 | py | Runtime Error | 0 | 0 | 475 | def isIncremental(a, b, c):
"""
a: int
b: int
c: int
returns "Yes" if a < b < c, otherwise "No"
>>> isIncremental(1, 3, 8)
'Yes'
>>> isIncremental(3, 8, 1)
'No'
>>> isIncremental(1, 1, 1)
'No'
"""
if a >= b:
return "No"
elif b >= c:
return "No"
else:
return "Yes"
if __name__ == '__main__':
ival = input().split(' ')
print(isIncremental(int(ival[0]), int(ival[1]), int(ival[2])) | File "/tmp/tmpts1og_ux/tmpw_386klh.py", line 25
print(isIncremental(int(ival[0]), int(ival[1]), int(ival[2]))
^
SyntaxError: '(' was never closed
| |
s902304221 | p02392 | u548155360 | 1487146959 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | nums=list(map(int,input().split()))
if nums[3] > nums[2] and nums[2] > nums[1]:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpubj__mzb/tmp5l509u6l.py", line 1, in <module>
nums=list(map(int,input().split()))
^^^^^^^
EOFError: EOF when reading a line
| |
s793240141 | p02392 | u024715419 | 1487924197 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a,b,c = int(input())
if a < b and b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp1x03z5i3/tmpf01kmuax.py", line 1, in <module>
a,b,c = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s827204843 | p02392 | u024715419 | 1487924380 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | l = int(input())
if l[0] < l[1] and l[1] < l[2]:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp1j8h5xw2/tmpnyoxpp3w.py", line 1, in <module>
l = int(input())
^^^^^^^
EOFError: EOF when reading a line
| |
s478062235 | p02392 | u024715419 | 1487924452 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | l = input()
if int(l[0]) < int(l[1]) and int(l[1]) < int(l[2]):
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpna_ux9ww/tmpe5ghs_6p.py", line 1, in <module>
l = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s961082452 | p02392 | u024715419 | 1487924507 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | l = input()
if int(l[0]) < int(l[1]) and int(l[1]) < int(l[2]):
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpl24ag9_i/tmpvuzm_d9i.py", line 1, in <module>
l = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s899908327 | p02392 | u775160104 | 1488187879 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a, b, c = map(int, input().split())
if a < b and b < c: print("Yes")
else: print("No) | File "/tmp/tmpv_l17q7a/tmpah17ntil.py", line 3
else: print("No)
^
SyntaxError: unterminated string literal (detected at line 3)
| |
s848102582 | p02392 | u072398496 | 1489373408 | Python | Python | py | Runtime Error | 0 | 0 | 42 | a=input b=input c=input
if a<b<c print Yes | File "/tmp/tmpkqz5der2/tmpv96bezdi.py", line 1
a=input b=input c=input
^
SyntaxError: invalid syntax
| |
s902667657 | p02392 | u300641790 | 1490880310 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | a,b,c = map(int,input().split())
if(a< b && b < c):
print("Yes")
else:
print("No") | File "/tmp/tmp4_50b4in/tmp9h4pzwuc.py", line 3
if(a< b && b < c):
^
SyntaxError: invalid syntax
| |
s675782499 | p02392 | u208157605 | 1491342366 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | a, b, c = list(map(int, input()))
if a < b and b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmptha73ixu/tmpsym2jlws.py", line 1, in <module>
a, b, c = list(map(int, input()))
^^^^^^^
EOFError: EOF when reading a line
| |
s731230234 | p02392 | u884445603 | 1492575381 | Python | Python3 | py | Runtime Error | 0 | 0 | 261 | l = [int(x) for x in input().split()]
a = l[0]
b = l[1]
if a < b :
print("a < b")
elif a > b :
print("a > b")
else:
print("a == b")
l = [int(x) for x in input().split()]
a = l[0]
b = l[1]
c = l[2]
if a < b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpc73_zs8s/tmp0_j94zp_.py", line 1, in <module>
l = [int(x) for x in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s207593916 | p02392 | u503144441 | 1492760475 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | def yesno(a,b,c):
0<=a,b,c<=100
if a<b<c:
print("Yes")
else:
print("No")
yesno(a,b,c)
| Traceback (most recent call last):
File "/tmp/tmp03j00kvf/tmppfv_4sy0.py", line 8, in <module>
yesno(a,b,c)
^
NameError: name 'a' is not defined
| |
s258003379 | p02392 | u321712183 | 1494239166 | Python | Python | py | Runtime Error | 0 | 0 | 117 | # coding:utf-8
x=map(int,(raw_input().split()))
if int(x[0]) < x[1]) < x[2]:
print("Yes")
else:
print("No") | File "/tmp/tmp8gc9q9y5/tmpuf9zsiyl.py", line 5
if int(x[0]) < x[1]) < x[2]:
^
SyntaxError: unmatched ')'
| |
s028283027 | p02392 | u321712183 | 1494239231 | Python | Python | py | Runtime Error | 0 | 0 | 112 | # coding:utf-8
x=map(int,(raw_input().split()))
if x[0] < x[1]) < x[2]:
print("Yes")
else:
print("No") | File "/tmp/tmpw3cwnlyf/tmpdbhchee_.py", line 5
if x[0] < x[1]) < x[2]:
^
SyntaxError: unmatched ')'
| |
s672789455 | p02392 | u650790815 | 1494289405 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | a,b,c = map(int,input().split())
if a < b < c:
print('Yes')
elde:
print('No') | File "/tmp/tmpafgerwm1/tmp1whmj8ie.py", line 4
elde:
^
SyntaxError: invalid syntax
| |
s727313691 | p02392 | u628279257 | 1494585896 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | s= input().split()
a=int(s.[0])
b=int(s.[1])
c=int(s.[2])
if((a>b)and(b>c)):
print("Yes")
else:
print("No") | File "/tmp/tmpfzk1p7bp/tmpzymkdlum.py", line 2
a=int(s.[0])
^
SyntaxError: invalid syntax
| |
s435159859 | p02392 | u628279257 | 1494585944 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | s= input().split()
a=int(s.[0])
b=int(s.[1])
c=int(s.[2])
if((c>b)and(b>a)):
print("Yes")
else:
print("No") | File "/tmp/tmpnsbwyp5h/tmpen8snusa.py", line 2
a=int(s.[0])
^
SyntaxError: invalid syntax
| |
s377461908 | p02392 | u628279257 | 1494586026 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | s=input().split()
a=int(s.[0])
b=int(s.[1])
c=int(s.[2])
if((c>b)and(b>a)):
print("Yes")
else:
print("No") | File "/tmp/tmp1o4n36te/tmpwlmimsji.py", line 2
a=int(s.[0])
^
SyntaxError: invalid syntax
| |
s919358380 | p02392 | u675844759 | 1496799214 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | a, b, c = [int(i) for i in intput().split()]
if a < b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpu6ahp46q/tmplvvbogpd.py", line 1, in <module>
a, b, c = [int(i) for i in intput().split()]
^^^^^^
NameError: name 'intput' is not defined. Did you mean: 'input'?
| |
s280752068 | p02392 | u580737984 | 1497507312 | Python | Python3 | py | Runtime Error | 0 | 0 | 313 | i = j = k = 0
n = ''
m = ''
l = ''
line = input()
while line[i] != ' ':
n = n + line[i]
i += 1
while line[i] != ' ':
l = l + line[i]
i += 1
while i < len(line):
m = m + line[i]
i += 1
n = int(n)
l = int(l)
m = int(m)
if n < l and l < m:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp1d6kjdyh/tmp0bg36sio.py", line 6, in <module>
line = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s693804190 | p02392 | u261533743 | 1497509340 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 |
[a,b,c] = map(int,intput().split())
print({True: 'Yes', False: 'No'}[a < b < c])
| Traceback (most recent call last):
File "/tmp/tmppdd2mqwd/tmpxs3o33og.py", line 3, in <module>
[a,b,c] = map(int,intput().split())
^^^^^^
NameError: name 'intput' is not defined. Did you mean: 'input'?
| |
s089547021 | p02392 | u486972540 | 1497511649 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print("YES)
else:
print("NO") | File "/tmp/tmp64wxga11/tmp16x1ep7a.py", line 3
print("YES)
^
SyntaxError: unterminated string literal (detected at line 3)
| |
s642109375 | p02392 | u486972540 | 1497511680 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print("Yes)
else:
print("No") | File "/tmp/tmprbsul1m8/tmp3uvthhqa.py", line 3
print("Yes)
^
SyntaxError: unterminated string literal (detected at line 3)
| |
s130889164 | p02392 | u486972540 | 1497511717 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print("Yes")
else:
print("No") | File "/tmp/tmp_ai0ynvw/tmp6ivela45.py", line 1
a,b,c = [int(i) for i in input() split()]
^^^^^
SyntaxError: invalid syntax
| |
s856878573 | p02392 | u486972540 | 1497511745 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a,b,c = [int(i) for i in input() split()]
if a < b < c:
print('Yes')
else:
print('No') | File "/tmp/tmp7zzu4c9m/tmpe6hyj6ar.py", line 1
a,b,c = [int(i) for i in input() split()]
^^^^^
SyntaxError: invalid syntax
| |
s638325517 | p02392 | u169794024 | 1497512763 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b,c,=map(int,input().split())
if a<b<c:
print(Yes)
else:
print(No) | Traceback (most recent call last):
File "/tmp/tmphm47ur85/tmpr7y2h4g8.py", line 1, in <module>
a,b,c,=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s819555772 | p02392 | u831971779 | 1497515762 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | [a,b,c]=int(input().split())
if a < b < c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpq_04qmaa/tmpax5iilpp.py", line 1, in <module>
[a,b,c]=int(input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s600382806 | p02392 | u692161606 | 1497524756 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a, b, c = map(int ,input().split())
if a < b < c:
print(Yes)
else:
print(No) | Traceback (most recent call last):
File "/tmp/tmpxy39s6nh/tmpartd3zjx.py", line 1, in <module>
a, b, c = map(int ,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s063638664 | p02392 | u386861275 | 1497966949 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | a,b,c= map(int, input().split())
if a<b && b<c:
print("Yes")
else
print("No") | File "/tmp/tmpf9ldvxqy/tmpnxrbyd05.py", line 2
if a<b && b<c:
^
SyntaxError: invalid syntax
| |
s320387241 | p02392 | u911624488 | 1498029960 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print "Yes"
else:
print "No" | File "/tmp/tmp9a87ab4e/tmpx5_3o9er.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s855028969 | p02392 | u911624488 | 1498030098 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print "Yes"
else:
print "No" | File "/tmp/tmp67nqpkzg/tmps3im_14y.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s802332416 | p02392 | u911624488 | 1498030203 | Python | Python | py | Runtime Error | 0 | 0 | 116 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print ("Yes")
else:
print ("No") | File "/tmp/tmpnkj1thzn/tmpksjqtbiy.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s253430876 | p02392 | u911624488 | 1498030242 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a, b, c = [int(i) for i in input().split()]
if a < b < c:
print ("Yes")
else:
print ("No") | File "/tmp/tmpjplw3wmn/tmpnzi8m6f4.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s637783325 | p02392 | u363648401 | 1498030344 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | int(input(i))
if a<b<c :
return YES
else:
return NO | File "/tmp/tmpva6k6u9z/tmpg5agaj18.py", line 4
return YES
^^^^^^^^^^
SyntaxError: 'return' outside function
| |
s158228243 | p02392 | u818923713 | 1498031328 | Python | Python3 | py | Runtime Error | 0 | 0 | 135 | a, b, c = map(int, input().split())
if a < b < c:
print('a < b < c')
elif a > b > c:
print('a > b > c')
else:
print('none') | File "/tmp/tmpgw4uder1/tmp_t_etgih.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s714407703 | p02392 | u818923713 | 1498031381 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b, c = map(int, input().split())
if a < b < c:
print('yes')
elif a > b > c:
print('no')
else:
print('none') | File "/tmp/tmpdw514e30/tmps05qbcro.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s750552784 | p02392 | u818923713 | 1498031422 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b, c = map(int, input().split())
if a < b < c:
print('YES')
elif a > b > c:
print('NO')
else:
print('none') | File "/tmp/tmp7j5_nxyk/tmpf9muf5w8.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s396758933 | p02392 | u818923713 | 1498031459 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | a, b, c = map(int, input().split())
if a < b < c:
print('Yes')
elif a > b > c:
print('No')
else:
print('none') | File "/tmp/tmpw6rpfff7/tmpu0at5_96.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s363716282 | p02392 | u818923713 | 1498031558 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b, c = map(int, input().split())
if a < b < c:
print('Yes')
else:
print('No')
| File "/tmp/tmp3b2_vk56/tmplghvbc7s.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s627154169 | p02392 | u818923713 | 1498031599 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | a, b, c = map(int, input().split())
if a < b < c:
print("Yes")
else:
print("No")
| File "/tmp/tmpvrhwasby/tmpi73jiwkz.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s296639710 | p02392 | u923630348 | 1498031731 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | a,b,c, = map(int, input().split())
if a > b > c >:
print("Yes")
else:
print("No") | File "/tmp/tmpglwewufj/tmpl9uypio3.py", line 2
if a > b > c >:
^
SyntaxError: invalid syntax
| |
s747833968 | p02392 | u818923713 | 1498031760 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | a, b, c = map(int, input().split())
if a < b < c:
print("Yes")
else:
print("No") | File "/tmp/tmpgt756ixh/tmptzeh57j2.py", line 2
if a < b < c:
IndentationError: unexpected indent
| |
s253981841 | p02392 | u553951959 | 1499498182 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | 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/tmp170rzi90/tmpqzqxgh36.py", line 1, in <module>
a = int(input () )
^^^^^^^^
EOFError: EOF when reading a line
| |
s322485622 | p02392 | u043639882 | 1499840298 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | a,b,c=map(int,input().split())
if a < b < c:
print("Yes")
Print ("No") | Traceback (most recent call last):
File "/tmp/tmphw8l1ht7/tmp2j9p1lg5.py", line 1, in <module>
a,b,c=map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s332481660 | p02392 | u043639882 | 1499840384 | Python | Python3 | py | Runtime Error | 0 | 0 | 75 | a,b,c=map(int,input().split())
if a < b < c:
print("Yes")
print("No") | File "/tmp/tmpz9f4r0_m/tmprpdshw87.py", line 4
print("No")
^
IndentationError: unindent does not match any outer indentation level
| |
s936399534 | p02392 | u447009770 | 1500276962 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | a, b, c = map(int, input().split())
if a < b:
if b < c:
print('Yes')
else:
print('No')
else:
print('No') | File "/tmp/tmpbxmpr_aj/tmpgcvhms7y.py", line 5
else:
^^^^
SyntaxError: invalid syntax
| |
s249537507 | p02392 | u295538678 | 1500432174 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | w,h,x,y,r =[int(i) for i in input().split()]
if(w < x+r ):
print('YES')
elif(h < y+r):
print('YES')
else:
print('NO') | Traceback (most recent call last):
File "/tmp/tmp03v401tv/tmpab420yk2.py", line 1, in <module>
w,h,x,y,r =[int(i) for i in input().split()]
^^^^^^^
EOFError: EOF when reading a line
| |
s998442450 | p02392 | u888737393 | 1500681475 | Python | Python | py | Runtime Error | 0 | 0 | 88 | A, B, C = list(ma(int, input().split()))
if A<B<C:
print('Yes')
else:
prit('No') | Traceback (most recent call last):
File "/tmp/tmpfpl5us1o/tmppfgk16vt.py", line 1, in <module>
A, B, C = list(ma(int, input().split()))
^^
NameError: name 'ma' is not defined. Did you mean: 'max'?
| |
s064214111 | p02392 | u471400255 | 1500698793 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | memo = input().spllit()
a,b,c = [int(x) for x in memo]
if(a < b && b < c):
print("Yes")
else:
print("No") | File "/tmp/tmpdxn75u_6/tmpa4j7_fx5.py", line 3
if(a < b && b < c):
^
SyntaxError: invalid syntax
| |
s419804088 | p02392 | u471400255 | 1500698868 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | memo = input().split()
a,b,c = [int(x) for x in memo]
if(a < b && b < c):
print("Yes")
else:
print("No") | File "/tmp/tmppze8211q/tmparrhbyn2.py", line 3
if(a < b && b < c):
^
SyntaxError: invalid syntax
| |
s161914540 | p02392 | u471400255 | 1500698916 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | memo = input().split()
a,b,c = [int(x) for x in memo]
if(a < b && b < c):
print("Yes")
else:
print("No") | File "/tmp/tmpjtcsjwqg/tmptt9g_diu.py", line 3
if(a < b && b < c):
^
SyntaxError: invalid syntax
| |
s975915324 | p02392 | u471400255 | 1500699114 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | memo = input().split()
a,b,c = [int(x) for x in memo]
if a < b && b < c :
print("Yes")
else:
print("No") | File "/tmp/tmp4bsmrtbu/tmp5brnrdrb.py", line 3
if a < b && b < c :
^
SyntaxError: invalid syntax
| |
s662550113 | p02392 | u917268529 | 1501146913 | Python | Python3 | py | Runtime Error | 0 | 0 | 224 | <?php
while($line=fgets(STDIN)){
$line = rtrim($line);
$data = explode(" ", $line);
if ($data[0] < $data[1] && $data[1] < $data[2]) {
echo "Yes". PHP_EOL;
} else {
echo "No" . PHP_EOL;
}
} | File "/tmp/tmp706apk45/tmpbjw1zhle.py", line 1
<?php
^
SyntaxError: invalid syntax
| |
s690000263 | p02392 | u120602885 | 1501907018 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | tmp = input()
tmp = tmp.split(" ")
x,y = map(int,tmp)
if x == y:
print("a == b")
elif x > y:
print("a > b")
else:
print("a < b") | Traceback (most recent call last):
File "/tmp/tmp30pcr5cw/tmpr0p5a689.py", line 1, in <module>
tmp = input()
^^^^^^^
EOFError: EOF when reading a line
| |
s907607262 | p02392 | u142321256 | 1502459384 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | abc = input().split()
if(int(abc[0])< int(abc[1]) and int(abc[1] < int(abc[2])) ):
print('Yes')
else:
print('No') | Traceback (most recent call last):
File "/tmp/tmpqephgz3z/tmpxgknr17l.py", line 1, in <module>
abc = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s180743300 | p02392 | u506705885 | 1503413820 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | num_list=input.split()
a=int(num_list[0])
b=int(num_list[1])
c=int(num_list[2])
if a>b>c:
print('Yes')
else :
print('No') | Traceback (most recent call last):
File "/tmp/tmpl7cpjvv2/tmp8iymkius.py", line 1, in <module>
num_list=input.split()
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s926862807 | p02392 | u096862087 | 1503551675 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a,b,c = map(int, input.split())
if a < b <c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpmsxn4gaa/tmpqigbk5qt.py", line 1, in <module>
a,b,c = map(int, input.split())
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s581908685 | p02392 | u096862087 | 1503551729 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | a,b,c = map(int, input.split())
if a < b <c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmpv55oxqzt/tmpnhgcinyy.py", line 1, in <module>
a,b,c = map(int, input.split())
^^^^^^^^^^^
AttributeError: 'builtin_function_or_method' object has no attribute 'split'
| |
s095492593 | p02392 | u096862087 | 1503568905 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | a,b,c = map(int, input().split)
if a<b<c:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp6nsi0tkr/tmpgcgd1zko.py", line 1, in <module>
a,b,c = map(int, input().split)
^^^^^^^
EOFError: EOF when reading a line
| |
s902358678 | p02392 | u096862087 | 1503569047 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | 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/tmp8ext69s4/tmpjndo90vr.py", line 1, in <module>
a,b,c = map(int, input().split)
^^^^^^^
EOFError: EOF when reading a line
| |
s272479681 | p02392 | u096862087 | 1503569646 | Python | Python | py | Runtime Error | 0 | 0 | 81 | a,b,c = map(int,input().split())
result = "Yes" if a<b<c else "No"
print(result) | Traceback (most recent call last):
File "/tmp/tmpwrc043op/tmps_zw9idn.py", line 1, in <module>
a,b,c = map(int,input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s658239790 | p02392 | u088372268 | 1505535643 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | l1 = list(input().split(" "))
l2 = list(input().split(" "))
l1.sort()
if l1 == l2:
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp4d3zskcm/tmpqew1ixtp.py", line 1, in <module>
l1 = list(input().split(" "))
^^^^^^^
EOFError: EOF when reading a line
| |
s594748349 | p02392 | u664228906 | 1506308090 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | a,b,c=map(int, input().split())
if a<b && b<c: print("Yes")
else: print("No") | File "/tmp/tmp7f1tbvqs/tmpnhss2xcw.py", line 2
if a<b && b<c: print("Yes")
^
SyntaxError: invalid syntax
| |
s770437354 | p02392 | u825994660 | 1507525593 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | z = input()
a,b,c = z.split()
if int(a) < int(b) && int(b) < int(c):
print("Yes")
else:
print("No") | File "/tmp/tmpv0zuxf62/tmp5o0_6es0.py", line 4
if int(a) < int(b) && int(b) < int(c):
^
SyntaxError: invalid syntax
| |
s702975912 | p02392 | u292798607 | 1508215923 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | nums = input().split()
if nums[0] =< nums[1] and nums[1] =< nums[2]:
print("Yes")
else:
print("No") | File "/tmp/tmpazr0hr1w/tmp3k_z4mcj.py", line 3
if nums[0] =< nums[1] and nums[1] =< nums[2]:
^
SyntaxError: invalid syntax
| |
s512776676 | p02392 | u292798607 | 1508217007 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | nums = input().split()
if int(nums[0]) < int(nums[1]) and int(num[1]) < int(nums[2]):
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmphngeq74n/tmpis22ao7o.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s335136682 | p02392 | u292798607 | 1508217056 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | nums = input().split()
if int(nums[0]) < int(nums[1]) and int(numS[1]) < int(nums[2]):
print("Yes")
else:
print("No") | Traceback (most recent call last):
File "/tmp/tmp1xdhs4xp/tmp5c4y1on1.py", line 1, in <module>
nums = input().split()
^^^^^^^
EOFError: EOF when reading a line
| |
s064127884 | p02392 | u574330094 | 1508406727 | Python | Python | py | Runtime Error | 0 | 0 | 82 | list = int[a, b, c]
if(int[a] < int[b] < int[c])
print("Yes")
else()
print("No") | File "/tmp/tmpdpy8_t9r/tmp9a78n577.py", line 3
if(int[a] < int[b] < int[c])
^
SyntaxError: expected ':'
| |
s845525006 | p02392 | u574330094 | 1508406809 | Python | Python | py | Runtime Error | 0 | 0 | 82 | list = int[a, b, c]
if(int[a] < int[b] < int[c])
print("Yes")
else()
print("No") | File "/tmp/tmpe6_rlnr0/tmpjeb4llx3.py", line 3
if(int[a] < int[b] < int[c])
^
SyntaxError: expected ':'
| |
s148241618 | p02392 | u574330094 | 1508406870 | Python | Python | py | Runtime Error | 0 | 0 | 81 | list = int[a, b, c]
if(int[a] < int[b] < int[c])
print("Yes")
else(print("No")) | File "/tmp/tmpp_aol403/tmpxee9t9tf.py", line 3
if(int[a] < int[b] < int[c])
^
SyntaxError: expected ':'
| |
s258940352 | p02392 | u104114903 | 1509511733 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | inputStr = 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/tmpq7mybfg0/tmp0m297ldd.py", line 5
if(a < b && b < c):
^
SyntaxError: invalid syntax
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.