s_id
stringlengths
10
10
p_id
stringlengths
6
6
u_id
stringlengths
10
10
date
stringlengths
10
10
language
stringclasses
1 value
original_language
stringclasses
11 values
filename_ext
stringclasses
1 value
status
stringclasses
1 value
cpu_time
stringlengths
1
5
memory
stringlengths
1
7
code_size
stringlengths
1
6
code
stringlengths
1
539k
s607437171
p02392
u535719732
1559187088
Python
Python3
py
Runtime Error
0
0
127
num = list(map(int,input().split())) if(num[0] < num[1] && num[1] < num[2] && num[0] < num[2]): print("Yes") else: print("No")
s056882520
p02392
u073112878
1559195559
Python
Python3
py
Runtime Error
0
0
89
a, b, c=input().split() if 'a < b < c' : print("Yes") else : print("No")
s905053022
p02392
u073112878
1559195598
Python
Python3
py
Runtime Error
0
0
93
a, b, c=input().split() if 'a < b < c' : print( 'Yes' ) else : print( 'No' )
s104134825
p02392
u073112878
1559195611
Python
Python3
py
Runtime Error
0
0
93
a, b, c=input().split() if 'a < b < c' : print( 'Yes' ) elif : print( 'No' )
s703478016
p02392
u579833671
1406963884
Python
Python
py
Runtime Error
0
0
97
a, b, c = mapt(int, raw_input().split()) if a < b and b < c: print "Yes" else: print "No"
s657060266
p02392
u481221703
1418863378
Python
Python
py
Runtime Error
0
0
147
import sys for line in sys.stdin.readline(): a, b, c = map(int, line.strip().split()) if (a < b) and (b < c): print "Yes" else: print "No"
s120923374
p02392
u481221703
1418863513
Python
Python
py
Runtime Error
0
0
143
import sys for line in sys.stdin.readlines(): a, b, c = map(int, line.strip().sprit()) if (a<b) and (b<c): print "Yes" else: print "No"
s303059148
p02392
u481221703
1418863604
Python
Python
py
Runtime Error
0
0
76
a, b, c = input_raw().split() if a<b<c: print "Yes" else: print "No"
s008696167
p02392
u745846646
1422240368
Python
Python3
py
Runtime Error
0
0
235
x =input().split(' ') a = int(x[0]) b = int(x[1]) c = int(x[2]) if a <= b <= c: print(a, b, c) elif a <= c <= b print(a, c, b) elif b <= a <= c: print(b, a, c) elif c <= a <= b: print(c, a, b) else: print(c, b, a)
s700402847
p02392
u067975558
1422326721
Python
Python3
py
Runtime Error
0
0
131
(a, b, c) = input().rstrip().split(' ') a = int(a) b = int(b) c = int(c) if a < b && b < c: print('Yes') else: print('No')
s263112830
p02392
u823030818
1422327351
Python
Python3
py
Runtime Error
0
0
123
(a, b, c) = input().rstrip().split() a = int(a) b = int(b) c = int(c) if a < b < c; print('Yes') else; print('No')
s087858170
p02392
u823030818
1422327364
Python
Python3
py
Runtime Error
0
0
123
(a, b, c) = input().rstrip().split() a = int(a) b = int(b) c = int(c) if a < b < c: print('Yes') else; print('No')
s158225228
p02392
u297342993
1422327399
Python
Python3
py
Runtime Error
0
0
114
(a,b,c) = input().rstrip().split() a = int(a) b = int(b) c = int(c) if a < b < c print("Yes") else: print("No")
s957390966
p02392
u088816384
1424987177
Python
Python3
py
Runtime Error
0
0
80
a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
s737710512
p02392
u088816384
1424987373
Python
Python3
py
Runtime Error
0
0
80
a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
s645374066
p02392
u088816384
1424988315
Python
Python3
py
Runtime Error
0
0
80
a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
s934838516
p02392
u088816384
1424988349
Python
Python3
py
Runtime Error
0
0
91
import sys a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
s756296667
p02392
u088816384
1424988413
Python
Python3
py
Runtime Error
0
0
104
# -*- coding: UTF-8 -*- a, b, c = map(int, raw_input().split()) if a<b<c: print "Yes" else: print "No"
s745655511
p02392
u140201022
1431537193
Python
Python
py
Runtime Error
0
0
71
m,n,o=map(int, raw_input().split()) print'Yes' if m<n<o else:print 'No'
s135530517
p02392
u062590758
1432109689
Python
Python3
py
Runtime Error
0
0
78
a,b,c=map(int,input().split()) if a<b && b<c: print('Yes') else: print('No')
s702221111
p02392
u172616925
1434907577
Python
Python
py
Runtime Error
0
0
80
a,b,c = map(int, raw_input().split()) if a < b < c: print yes else: print no
s034313061
p02392
u255164080
1436150870
Python
Python3
py
Runtime Error
0
0
126
nums = ['a', 'b', 'c'] a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print('Yes') else: print('No')
s909770766
p02392
u446066125
1436150944
Python
Python3
py
Runtime Error
0
0
131
num = input().split(); a = int(num[0]); b = int(num[1]); c = int(num[2]); if a < b && b < c: print('Yes'); else : print('No');
s058645121
p02392
u733449206
1436151068
Python
Python3
py
Runtime Error
0
0
126
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = unt(nums[2]) if a < b < c: print('Yes') else: print('No')
s122246908
p02392
u255164080
1436151079
Python
Python3
py
Runtime Error
0
0
133
nums = input().split().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c print('Yes') else: print('No')
s337723520
p02392
u605525736
1436151566
Python
Python3
py
Runtime Error
0
0
126
nums = input().split() a = int(nums[1]) b = int(nums[3]) c = int(nums[8]) if a < b < c: print("Yes") else: print("No")
s117596122
p02392
u255164080
1436151665
Python
Python3
py
Runtime Error
0
0
113
nums = input().split() a = (nums[0]) b = (nums[1]) c = (nums[2]) if a < b < c: print(Yes) else: print(No)
s146435455
p02392
u152353734
1436151696
Python
Python3
py
Runtime Error
0
0
120
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(Yes) else: print(No)
s487362950
p02392
u925228699
1436151854
Python
Python3
py
Runtime Error
0
0
105
nums = inpu().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, d, c)
s009038388
p02392
u152353734
1436151876
Python
Python3
py
Runtime Error
0
0
102
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(Yes)
s960866855
p02392
u925228699
1436151888
Python
Python3
py
Runtime Error
0
0
105
nums = inpu().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a, d, c)
s436997471
p02392
u467309160
1436151955
Python
Python3
py
Runtime Error
0
0
126
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print('Yes') elif; print('No')
s690536545
p02392
u686134343
1436152137
Python
Python3
py
Runtime Error
0
0
128
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print("Yse") elif: print("No")
s449031308
p02392
u255164080
1436152429
Python
Python3
py
Runtime Error
0
0
125
nums = input().split() a = int(nums[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print('Yes') else print('No')
s343997749
p02392
u118723993
1436152447
Python
Python3
py
Runtime Error
0
0
105
nums = input().split() a = int(nams[0]) b = int(nums[1]) c = int(nums[2]) if a < b < c: print(a,b,c,)
s090748940
p02392
u484576700
1436449856
Python
Python
py
Runtime Error
0
0
93
a, b, c=map(int, raw_input().split()) if a<b<c: ????????print "Yes" else: ????????print "No"
s207936320
p02392
u484576700
1436449873
Python
Python
py
Runtime Error
0
0
93
a, b, c=map(int, raw_input().split()) if a<b<c: ????????print "Yes" else: ????????print "No"
s408239245
p02392
u925228699
1437961403
Python
Python3
py
Runtime Error
0
0
110
import math r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print('%.5f %.5f' % (s, l))
s948867345
p02392
u925228699
1437961431
Python
Python3
py
Runtime Error
0
0
110
import math r = float(input()) s = r * r * math.pi l = r * 2 * math.pi print('%.5f %.5f' % (s, l))
s127675289
p02392
u118723993
1439775018
Python
Python3
py
Runtime Error
0
0
293
using namespace std; int main() { int a = 0, b = 0, c = 0; cin >> a >> b >> c; if(a < c){ if(a < b && b < c) cout << "Yes" << endl; else cout << "No" << endl; } else cout << "No" << endl; return 0; }
s631465384
p02392
u473077745
1439779513
Python
Python3
py
Runtime Error
0
0
81
a, b = map(int, input().split()) if a < b < c: print('Yes') else: print('No')
s810299516
p02392
u814658648
1439963621
Python
Python3
py
Runtime Error
0
0
90
a, b, c = map(int, input().split()) if a < b && b < c: print("YES") else: print("NO")
s007234883
p02392
u463783070
1440651046
Python
Python3
py
Runtime Error
0
0
131
num = input().split() a = int(num[0]) b = int(num[1]) c = int(num[2]) if a < b < c : print("Yes") else : print("No")
s122792262
p02392
u253463900
1442200006
Python
Python3
py
Runtime Error
0
0
136
data = input() x = [] x = data.split() a = int(x[0]) b = int(x[1]) c = int(x[2]) if(a < b < c): print('Yes') elif: print("No")
s825846199
p02392
u894381890
1442204985
Python
Python
py
Runtime Error
0
0
110
import sys x = sys.stdin.readline() a, b, c = x.split(" ") if a < b && b < c: print Yes else: print No
s483178821
p02392
u894381890
1442208887
Python
Python
py
Runtime Error
0
0
142
import sys x = sys.stdin.readline() a_list = x.split(" ") if a_list[0] < a_list[1] and a_list[1] < a_list[2]: print Yes else: print No
s205225759
p02392
u894381890
1442208940
Python
Python
py
Runtime Error
0
0
162
import sys x = sys.stdin.readline() a_list = x.split(" ") if int(a_list[0]) < int(a_list[1]) and int(a_list[1]) < int(a_list[2]): print Yes else: print No
s311166476
p02392
u775586391
1447777565
Python
Python3
py
Runtime Error
0
0
98
a,b,c = map(int,input().spit()) if b <= a: print(No) elif c <= b: print(No) else: print(Yes)
s413956027
p02392
u775586391
1447777611
Python
Python3
py
Runtime Error
0
0
99
a,b,c = map(int,input().split()) if b <= a: print(No) elif c <= b: print(No) else: print(Yes)
s440134938
p02392
u982618289
1448861648
Python
Python3
py
Runtime Error
0
0
135
input = input).strip().split() a = int(input[0]) b = int(input[1]) c = int(input[2]) if a>b>c: print("Yes") else: print("No")
s527753640
p02392
u663227983
1452510148
Python
Python
py
Runtime Error
0
0
82
m = map(int,raw_input().split()) if m[0] < m[1] < m[2]: print Yes else: print No
s098295699
p02392
u663227983
1452510154
Python
Python
py
Runtime Error
0
0
82
m = map(int,raw_input().split()) if m[0] < m[1] < m[2]: print Yes else: print No
s046414913
p02392
u424209323
1452652944
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int, input().split()) if a < b and b < c: print "Yes" else: print "No"
s701987316
p02392
u424209323
1452652955
Python
Python
py
Runtime Error
0
0
96
a, b, c = map(int, input().split()) if (a < b and b < c): print "Yes" else: print "No"
s953648545
p02392
u613805578
1452698646
Python
Python
py
Runtime Error
0
0
96
a, b, c = map(int, raw_input().split()) if a < b and b < c: return "Yes" else: return "NO"
s574734609
p02392
u920118302
1452747289
Python
Python
py
Runtime Error
0
0
89
a, b, c = map(int, raw_input().split()) if a < b < c: print'"Yes") else: print("No")
s096286298
p02392
u724923896
1452845512
Python
Python
py
Runtime Error
0
0
86
a, b, c = map(int, raw_input().split()) if a < b and b < c: print yes else print no
s571050059
p02392
u724923896
1452845536
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"
s136711598
p02392
u724923896
1452845574
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, raw_input().split()) if a < b and b < c: print yes else: print no
s398527811
p02392
u967035362
1453185583
Python
Python
py
Runtime Error
0
0
90
a, b, c = map(int, raw_input().split()) if a < b < c : print Yes else print No
s651747467
p02392
u020577611
1453203380
Python
Python3
py
Runtime Error
0
0
91
a=map(int, raw_input().split()) if a[0]<a[1]<a[2]: print("Yes") else : print("No")
s699987966
p02392
u393769849
1453205087
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split()) if a < b: if b < c: print "yes" elif: print "no"
s015218786
p02392
u393769849
1453205181
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split()) if a < b: if b < c: print "Yes" elif: print "No"
s545814171
p02392
u393769849
1453205312
Python
Python
py
Runtime Error
0
0
83
a, b, c = map(int, input().split()) if a < b < c: print "Yes" elif: print "No"
s793968720
p02392
u393769849
1453205361
Python
Python
py
Runtime Error
0
0
80
a, b, c = map(int, input().split()) if a < b < c: print "Yes" elif: print "No"
s783656651
p02392
u393769849
1453205479
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split()) if a < b: if b < c: print "Yes" else: print "No"
s199828636
p02392
u393769849
1453205500
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, input().split()) if a < b: if b < c: print ("Yes") else: print ("No")
s283738060
p02392
u393769849
1453205545
Python
Python
py
Runtime Error
0
0
94
a, b, c = map(int, input().split("")) if a < b: if b < c: print ("Yes") else: print ("No")
s952239589
p02392
u393769849
1453205615
Python
Python
py
Runtime Error
0
0
86
a, b, c = map(int, input().split("")) if a < b < c: print ("Yes") else: print ("No")
s561834452
p02392
u393769849
1453205652
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, input().split("")) if a < b and b < c: print ("Yes") else: print ("No")
s354016784
p02392
u393769849
1453205656
Python
Python
py
Runtime Error
0
0
92
a, b, c = map(int, input().split("")) if a < b and b < c: print ("Yes") else: print ("No")
s027882561
p02392
u393769849
1453205677
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(int, input().split("")) if a < b and b < c: print "Yes" else: print "No"
s471881916
p02392
u393769849
1453205713
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"
s242442605
p02392
u038243492
1453214791
Python
Python
py
Runtime Error
0
0
150
#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if((a<b)&&(b<c))puts("Yes"); else puts("No"); return 0; }
s136407652
p02392
u038243492
1453214821
Python
Python
py
Runtime Error
0
0
152
#include<cstdio> using namespace std; int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c); if((a<b)&&(b<c))puts("Yes"); else puts("No"); return 0; }
s257779722
p02392
u119456964
1453254019
Python
Python
py
Runtime Error
0
0
95
a, b, c = map(int, raw_input().split()) if a > b and b > c: return "yes" else: return "no"
s066501250
p02392
u682357930
1453254024
Python
Python
py
Runtime Error
0
0
67
a,b,c = input().split() if a<b<c: print 'yes' else: print 'no'
s369408227
p02392
u682357930
1453254033
Python
Python
py
Runtime Error
0
0
59
a,b,c = input() if a<b<c: print 'yes' else: print 'no'
s459448302
p02392
u682357930
1453254052
Python
Python
py
Runtime Error
0
0
76
a,b,c = map(int,input().split()) if a<b<c: print 'yes' else: print 'no'
s766932635
p02392
u682357930
1453254062
Python
Python
py
Runtime Error
0
0
82
a,b,c = map(int,input().split()) if a<b and b<c: print 'yes' else: print 'no'
s635112481
p02392
u130979865
1459553635
Python
Python
py
Runtime Error
0
0
154
# -*- coding: utf-8 -*- list = map(int, raw_input().split()) a = list[0] b = list[1] c = list[2] if a < b && b < c: print "Yes" else: print "No"
s582451988
p02392
u402330988
1459729169
Python
Python3
py
Runtime Error
0
0
87
a,b,c = map(int, input(),split(" ")) if a < b < c: print "Yes" else: print"No"
s647033979
p02392
u402330988
1459729196
Python
Python3
py
Runtime Error
0
0
84
a,b,c = map(int, input(),split()) if a < b < c: print "Yes" else: print"No"
s444094244
p02392
u402330988
1459729252
Python
Python3
py
Runtime Error
0
0
85
a,b,c = map(int, input(),split()) if a < b < c: print "Yes" else: print "No"
s903283845
p02392
u402330988
1459729266
Python
Python3
py
Runtime Error
0
0
87
a,b,c = map(int, input(),split()) if a < b < c: print("Yes") else: print("No")
s168705410
p02392
u077284614
1461234673
Python
Python3
py
Runtime Error
0
0
80
a, b, c=map(int,input().split()) if a<b && b<c: print("yes") else: print("no")
s736744461
p02392
u077284614
1461234711
Python
Python3
py
Runtime Error
0
0
80
a, b, c=map(int,input().split()) if a<b && b<c: print("yes") else: print("no")
s945765841
p02392
u908429180
1464589362
Python
Python
py
Runtime Error
0
0
109
nums = list(map(int, input().split())) if nums[0] < nums[1] < nums[2]: print("Yes") else: print("No")
s998186275
p02392
u106088354
1464767973
Python
Python3
py
Runtime Error
0
0
123
in = split(input()) a = int(in[0]) b = int(in[1]) c = int(in[2]) if a < b && b < c: print("yes") else: print("no")
s508207776
p02392
u106088354
1464768196
Python
Python3
py
Runtime Error
0
0
91
a, b, c = map(int, split(input())) if (a < b < c): print("yes") else: print("no")
s047315963
p02392
u106088354
1464768245
Python
Python3
py
Runtime Error
0
0
91
a, b, c = map(int, split(input())) if (a < b < c): print("Yes") else: print("No")
s791403488
p02392
u177370127
1465188440
Python
Python3
py
Runtime Error
0
0
110
a = int(input()) b = int(input()) c = int(input()) if a < b and b < c: print("Yes") else: print("No")
s563123668
p02392
u119456964
1465792570
Python
Python
py
Runtime Error
0
0
82
a, b, c = map(raw_input().split()) if a < b < c: print 'Yes' else: print 'No'
s645023248
p02392
u119456964
1465792581
Python
Python
py
Runtime Error
0
0
86
a, b, c = map(raw_input().split()) if a < b && b< c: print 'Yes' else: print 'No'
s115429078
p02392
u119456964
1465792597
Python
Python
py
Runtime Error
0
0
88
a, b, c = map(raw_input().split()) if a < b and b < c: print 'Yes' else: print 'No'
s449175814
p02392
u210148484
1466657252
Python
Python3
py
Runtime Error
0
0
87
a, b, c = map(int, input().split) if a < b < c : print("Yes") else: print("No")
s269004371
p02392
u210148484
1466657536
Python
Python3
py
Runtime Error
0
0
86
a, b, c = map(int, input().split) if a < b < c: print("Yes") else: print("No")
s700001353
p02392
u867908153
1468170509
Python
Python3
py
Runtime Error
0
0
117
as, bs, cs = input().split(" ") a = int(as) b = int(bs) c = int(cs) if a < b < c: print("Yes") else print("No")
s037245275
p02392
u867908153
1468170530
Python
Python3
py
Runtime Error
0
0
118
as, bs, cs = input().split(" ") a = int(as) b = int(bs) c = int(cs) if a < b < c: print("Yes") else: print("No")
s495808289
p02392
u514745787
1469516107
Python
Python3
py
Runtime Error
0
0
92
a,b,c = [int(i) for i in input()] if a < b < c: print("Yes") else: print("No")