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
s212764096
p03719
u762540523
1569614057
Python
Python (3.4.3)
py
Runtime Error
17
2940
51
print("NYoe s"[eval(input().replace(" ","<=")::2)])
s312593385
p03719
u046313635
1569174987
Python
Python (3.4.3)
py
Runtime Error
17
2940
73
a, b, c = map(int(input().split())) print("Yes" if a <= c <= b else "No")
s241146876
p03719
u474925961
1568730609
Python
Python (3.4.3)
py
Runtime Error
17
2940
156
import sys if sys.platform =='ios': sys.stdin=open('input_file.txt') a,b,c=int(input()) if (c-a)>=0 and b-c>=0: print("Yes") else: print("No")
s444714694
p03719
u131264627
1568689910
Python
Python (3.4.3)
py
Runtime Error
17
2940
99
a, b, c = map(int, input(),split()) if c >= a and c <= b: print('Yes') else: print('No')
s539769593
p03719
u556589653
1567985082
Python
Python (3.4.3)
py
Runtime Error
17
2940
85
A,B,C = map(int,input(),split()) if C>=A and C<=B: print("Yes") else: print("No")
s610540334
p03719
u450904670
1567985064
Python
Python (3.4.3)
py
Runtime Error
17
2940
75
a,b,c = list(map(int, input())) print("Yes" if a <= c and c <= b else "No")
s763277521
p03719
u765386817
1567632416
Python
Python (3.4.3)
py
Runtime Error
17
2940
95
a = input() b = input() c = input() if a<=c and c<=b : print('yes') else : print('no')
s813583249
p03719
u493491792
1566526727
Python
PyPy3 (2.4.0)
py
Runtime Error
168
38256
196
import numpy as np n,m=map(int,input().split()) road=[list(map(int,input().split())) for i in range(m)] road.sort() ans=np.unique(road,return_counts=True) for i in range(n): print(ans[1][i])
s276481754
p03719
u008229752
1566266318
Python
Python (3.4.3)
py
Runtime Error
17
2940
822
#include <iostream> #include <string> #include <vector> #include <math.h> #include <stdio.h> #include <algorithm> #include <utility> #include <functional> #define rep(i,n) for(int i=0;i<(n);i++) #define psortsecond(A,N) sort(A,A+N,[](const pii &a, const pii &b){return a.second<b.second;}); #define psortfirst(A,N) sort(...
s112665080
p03719
u623349537
1565241328
Python
Python (3.4.3)
py
Runtime Error
17
2940
100
A, B, C = map(int, input().split()) if A <= C and C <= B: print("Yes") else: print("No")
s802213412
p03719
u722189950
1564937350
Python
Python (3.4.3)
py
Runtime Error
18
3060
248
#ABC061C import sys N, K = map(int, input().split()) ab = [list(map(int, input().split())) for _ in range(N)] now = 0 ans = "" for a, b in ab: for i in range(b): now += 1 if now == K: print(a) sys.exit(0)
s089344036
p03719
u480887263
1564780797
Python
Python (3.4.3)
py
Runtime Error
17
2940
87
a,b,c=map(int,input(),split()) if a<=c and c<=b: print("YES") else: print("NO")
s190982586
p03719
u480887263
1564780758
Python
Python (3.4.3)
py
Runtime Error
17
2940
83
a,b,c=map(int,input(),split()) if a<=c and c<=b: print("YES") else: print("NO")
s414154945
p03719
u676059589
1564764462
Python
PyPy3 (2.4.0)
py
Runtime Error
261
63340
1887
from copy import deepcopy from sys import exit,setrecursionlimit import math from collections import defaultdict,Counter,deque from fractions import Fraction as frac setrecursionlimit(1000000) def main(): a,b,c = map(int,input().split()) if(a<=c<=d): print('Yes') else: print('No') def zip(a): mae = a[0] zi...
s575344594
p03719
u676059589
1564764446
Python
PyPy3 (2.4.0)
py
Runtime Error
297
64748
1885
from copy import deepcopy from sys import exit,setrecursionlimit import math from collections import defaultdict,Counter,deque from fractions import Fraction as frac setrecursionlimit(1000000) def main(): a,b,c = map(int,input().split()) if(a<c<d): print('Yes') else: print('No') def zip(a): mae = a[0] zipa...
s394697721
p03719
u580093517
1564524301
Python
Python (3.4.3)
py
Runtime Error
17
2940
205
#include<iostream> using namespace std; int main() { int a,b,c; cin >> a >> b >> c; if(a <= c && c <= b) { cout << "Yes"; } else { cout << "No"; } }
s676244041
p03719
u597136378
1564339065
Python
Python (3.4.3)
py
Runtime Error
17
2940
98
a,b,c = for i in input().split() if(a <= c && c <= b) print('Yes') else print('No')
s759330920
p03719
u170324846
1563844768
Python
PyPy3 (2.4.0)
py
Runtime Error
165
38256
327
#include <bits/stdc++.h> using namespace std; int main(){ int N, K, a, b, S, ans; cin >> N >> K; vector<int> C(100000); for (int i = 0; i < N; i++){ cin >> a >> b; C.at(a-1) += b; } for (int i = 0; i < N; i++){ S += C.at(i); if (S >= K){ cout << i+1 << endl; break; ...
s480022308
p03719
u275789218
1563768992
Python
Python (3.4.3)
py
Runtime Error
17
2940
61
if A <= C and C <= B: print("Yes") else: print("No")
s206668963
p03719
u275789218
1563768423
Python
Python (3.4.3)
py
Runtime Error
17
2940
36
if A<=C or C<=B then: print("Yes")
s536086509
p03719
u333190709
1563349674
Python
Python (3.4.3)
py
Runtime Error
17
2940
93
a, b, c = map(int, input().split()) if a <= c and c <= b: print("Yes") eles: print('No')
s313054904
p03719
u070187104
1562875400
Python
PyPy3 (2.4.0)
py
Runtime Error
171
38256
667
def main(): [N, M] = [int(i) for i in input().split()] E = [] for i in range(M): E.append([int(i) for i in input().split()]) dist = [-1*10**100 for i in range(N)] dist[0] = 0 for i in range(N): for [a, b, c] in E: newLen = dist[a-1] + c if newLen > dis...
s841703993
p03719
u299840026
1562208285
Python
Python (3.4.3)
py
Runtime Error
17
3064
281
n, m = map(int, input().split()) x =[] y =[] for i in range(m): x1, y1 = [int(i) for i in input().split()] x.append(x1) y.append(y1) d ={} for i in range(1,n+1): d[i]=0 for i in range(m): d[x[i]] += 1 d[y[i]] += 1 for i in range(1,n+1): print(d[i])
s747282230
p03719
u820047642
1561843443
Python
Python (3.4.3)
py
Runtime Error
18
3188
239
N,K=map(int,input().split()) D,L={},[] for _ in range(N): a,b=map(int,input().split()) L.append(a) if a in D:D[a]=D[a]+b else:D[a]=b l=list(set(L)).sort() for i in l: K-=D[i] if K<=0: print(i) exit()
s659649957
p03719
u908349502
1561766308
Python
Python (3.4.3)
py
Runtime Error
18
2940
77
a,b,c=mqp(int,input().split()) if a<=c<=b: print('Yes') else: print('No')
s421260754
p03719
u790812284
1561440890
Python
Python (3.4.3)
py
Runtime Error
17
2940
94
a, b, c = map(int, input().split()) if A<=c and c<=b: print("Yes") else: print("No")
s779338491
p03719
u691018832
1560392070
Python
Python (3.4.3)
py
Runtime Error
17
2940
143
import sys input = sys.stdin.readline a, b, c = map(int, input().split()) if a <= c and b >= c: ans = 'Yes' else ans = 'No' print(ans)
s000928400
p03719
u788137651
1559968640
Python
PyPy3 (2.4.0)
py
Runtime Error
166
38384
2127
# #    ⋀_⋀  #   (・ω・) # ./ U ∽ U\ # │* 合 *│ # │* 格 *│ # │* 祈 *│ # │* 願 *│ # │*   *│ #  ̄ # import sys input=sys.stdin.readline from math import floor,ceil,sqrt,factorial from heapq import heappop, heappush, heappushpop from collections import Counter,defaultdict inf=float('inf') mod = 10**9+7 def INT_...
s086087843
p03719
u861886710
1559597062
Python
Python (3.4.3)
py
Runtime Error
17
2940
99
a, b, c = map(int, input().split()) if(c >= a && c <= b): print("Yes") else: print("No")
s108128085
p03719
u698176039
1558045689
Python
Python (3.4.3)
py
Runtime Error
17
3060
278
N,K = map(int,input().split()) ab = [list(map(int,input().split())) for _ in range(N)] ab.sort(key = lambda x:x[0]) idx = 0 i = 0 while True: if idx + ab[i][1] > K-1: ans = ab[i][0] break else: idx += ab[i][1] i += 1 print(ans)
s778549863
p03719
u748311048
1558034992
Python
Python (3.4.3)
py
Runtime Error
17
3064
78
A,B,C=int(input().split()) if A<=C and B>C: print('Yes') else: print('No')
s411631950
p03719
u748311048
1558034768
Python
Python (3.4.3)
py
Runtime Error
17
2940
80
A,B,C=int(input().split()) if A=<C and B=>C: print('YES') else: print('NO')
s694704180
p03719
u748311048
1558034720
Python
Python (3.4.3)
py
Runtime Error
17
2940
80
A,B,C=int(input().split()) if A=<C and B=>C: print('YES') else: print('NO')
s039336863
p03719
u748311048
1558034702
Python
Python (3.4.3)
py
Runtime Error
17
2940
80
A,B,C=int(input().split()) if A<=C and B>=C: print('YES') else: print('NO')
s141803860
p03719
u440884206
1557788666
Python
Python (3.4.3)
py
Runtime Error
17
2940
62
[a,b,c]=list(map(int,input().split()) if a<b<c print("true")
s953152239
p03719
u440884206
1557788469
Python
Python (3.4.3)
py
Runtime Error
17
2940
63
[a,b,c]=list(map(int,input().split()) if a<b<c print:{"true"}
s505710211
p03719
u440884206
1557788333
Python
Python (3.4.3)
py
Runtime Error
17
2940
64
[a,b,c]=list(map(int,input().split())) if a<b<c print:{"true"}
s211464059
p03719
u487523716
1557627395
Python
Python (3.4.3)
py
Runtime Error
18
3064
1644
#https://atcoder.jp/contests/abc061/tasks/abc061_d # coding: utf-8 # Your code here! #input_template inpPh = 3 debug = True #debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -1000000000 4 5...
s068122202
p03719
u487523716
1557609385
Python
Python (3.4.3)
py
Runtime Error
17
3064
1999
#https://atcoder.jp/contests/abc061/tasks/abc061_d # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True #debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -1000000000 4 5...
s021244344
p03719
u487523716
1557609346
Python
Python (3.4.3)
py
Runtime Error
18
3192
2046
#https://atcoder.jp/contests/abc061/tasks/abc061_d # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True #debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -1000000000 4 5...
s749329306
p03719
u487523716
1557609223
Python
Python (3.4.3)
py
Runtime Error
18
2940
38
map(int, sys.stdin.readline().split())
s919739208
p03719
u487523716
1557609126
Python
Python (3.4.3)
py
Runtime Error
17
3064
740
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -10000...
s292601776
p03719
u487523716
1557608979
Python
Python (3.4.3)
py
Runtime Error
18
3064
756
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -10000...
s763513863
p03719
u487523716
1557608411
Python
Python (3.4.3)
py
Runtime Error
17
3064
739
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -10000...
s277846670
p03719
u487523716
1557608294
Python
Python (3.4.3)
py
Runtime Error
17
3064
829
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -10000...
s381744445
p03719
u487523716
1557608211
Python
Python (3.4.3)
py
Runtime Error
18
3064
829
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -10000...
s175585960
p03719
u487523716
1557608090
Python
Python (3.4.3)
py
Runtime Error
18
3192
2007
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -10000...
s611069212
p03719
u487523716
1557608059
Python
Python (3.4.3)
py
Runtime Error
18
3192
1997
#https://atcoder.jp/contests/abc061/tasks/abc061_d # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -1000000000 4 5 ...
s417060143
p03719
u487523716
1557608027
Python
Python (3.4.3)
py
Runtime Error
18
3192
1997
#https://atcoder.jp/contests/abc061/tasks/abc061_d # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True #debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -1000000000 4 5...
s923339318
p03719
u487523716
1557607831
Python
Python (3.4.3)
py
Runtime Error
17
2940
282
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M = map(int, sys.stdin.readline().split() )
s375328809
p03719
u487523716
1557607767
Python
Python (3.4.3)
py
Runtime Error
17
2940
285
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =( map( int, sys.stdin.readline().split() ) )
s285963384
p03719
u487523716
1557607674
Python
Python (3.4.3)
py
Runtime Error
17
2940
304
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =tuple( map(int, sys.stdin.readline().split() ) ) elist = []
s583007187
p03719
u487523716
1557607376
Python
Python (3.4.3)
py
Runtime Error
20
3060
317
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =tuple( map(lambda x: int(x), sys.stdin.readline().split() ) ) elist = []
s619010083
p03719
u487523716
1557607323
Python
Python (3.4.3)
py
Runtime Error
17
2940
525
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =tuple( map(lambda x: int(x), sys.stdin.readline().split() ) ) elist = [] fo...
s253072794
p03719
u487523716
1557607282
Python
Python (3.4.3)
py
Runtime Error
17
3060
654
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =tuple( map(lambda x: int(x), sys.stdin.readline().split() ) ) elist = [] fo...
s924929256
p03719
u487523716
1557607254
Python
Python (3.4.3)
py
Runtime Error
17
2940
1418
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =tuple( map(lambda x: int(x), sys.stdin.readline().split() ) ) elist = [] fo...
s305214825
p03719
u487523716
1557607017
Python
Python (3.4.3)
py
Runtime Error
17
2940
1408
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] N,M =tuple( map(lambda x: int(x), inpX_lst.pop(0).split() ) ) elist = [] for i i...
s713567015
p03719
u487523716
1557606905
Python
Python (3.4.3)
py
Runtime Error
18
3188
477
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] if debug and inpPh > 0: inpX_lst = inputXs[inploc].splitlines() if inpPh == 0: ...
s428111197
p03719
u487523716
1557606660
Python
Python (3.4.3)
py
Runtime Error
18
3192
1691
#https://atcoder.jp/contests/abc061/tasks/abc061_d import sys # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 inploc = inpPh - 1 #0,1,2 inpX_lst = [] if debug and inpPh > 0: inpX_lst = inputXs[inploc].splitlines() if inpPh == 0: ...
s390703243
p03719
u487523716
1557605822
Python
Python (3.4.3)
py
Runtime Error
18
3192
2071
#https://atcoder.jp/contests/abc061/tasks/abc061_d # coding: utf-8 # Your code here! #input_template inpPh = 2 debug = True debug = False if not debug: inpPh = 0 input1 =''' 3 3 1 2 4 2 3 3 1 3 5 '''[1:] input2 =''' 2 2 1 2 1 2 1 1 '''[1:] input3 =''' 6 5 1 2 -1000000000 2 3 -1000000000 3 4 -1000000000 4 5 ...
s248075788
p03719
u170324846
1557419491
Python
Python (3.4.3)
py
Runtime Error
17
2940
93
A, B, C = map(int, input().split()) if A =< C and C =< B: print("Yes") else: print("No")
s980753105
p03719
u170324846
1557419386
Python
Python (3.4.3)
py
Runtime Error
17
2940
86
A, B, C = map(int, input().split()) if A =< C =< B: print("Yes") else: print("No")
s235219856
p03719
u900727536
1557283177
Python
Python (3.4.3)
py
Runtime Error
17
2940
65
a,b,c = map(int,input().split()) print('YNeos'[(not A<=C<=B)::2])
s376006436
p03719
u900727536
1557282994
Python
Python (3.4.3)
py
Runtime Error
17
2940
62
a,b,c = map(int,input().split()) print("YNeos"[!(A<=C<=B)::2])
s886840476
p03719
u900727536
1557282808
Python
Python (3.4.3)
py
Runtime Error
17
2940
54
a,b,c = map(int,input()) print("YNeos"[!(A<=C<=B)::2])
s640795342
p03719
u649373416
1556770630
Python
Python (3.4.3)
py
Runtime Error
18
2940
495
#include <iostream> using namespace std; int main (void){ long long n,k; cin >> n >> k; long long li[1000000]; for (long long i=0;i<1000000;i++){ li[i]=0; } for (long long i=0;i<n;i++){ long long a,b; cin>>a>>b; li[a]+=b; } //cout << n << ","<<k<<endl; long long s =...
s923244417
p03719
u767664985
1555736151
Python
Python (3.4.3)
py
Runtime Error
17
2940
91
a, b, c = map(int(input().split())) if a <= c and c <= b: print("Yes") else: print("No")
s349303852
p03719
u844005364
1554581913
Python
Python (3.4.3)
py
Runtime Error
17
2940
73
a, b, c = map(int, input().split()) print("Yes" if a <= c <= b else "No)
s556473798
p03719
u309039873
1553969721
Python
Python (3.4.3)
py
Runtime Error
17
2940
206
N,M = map(int,input()) bucket = {} for i in range(N): bucket[i] = 0 for m in range(M): tempa,tempb = map(int,input()) bucket[tempa-1] += 1 bucket[tempb-1] += 1 for i in range(N): print(bucket[i])
s232451866
p03719
u732870425
1553657404
Python
Python (3.4.3)
py
Runtime Error
17
2940
56
a,b,c=map(int,input()) print("Yes" if a<=c<=b else "No")
s489503763
p03719
u677393869
1553044042
Python
Python (3.4.3)
py
Runtime Error
18
2940
80
A,B,C=map(int, input().split()) if A<=C and C<=B: print(Yes) else: print(No)
s726369293
p03719
u677393869
1553043996
Python
Python (3.4.3)
py
Runtime Error
17
2940
78
A,B,C=map(int, input().split()) if A<C and C<B: print(Yes) else: print(No)
s032279220
p03719
u518064858
1552956651
Python
Python (3.4.3)
py
Runtime Error
18
3060
214
n,k=map(int,input().split()) list=[0]*(10**5+1) for i in range(n): a,b=map(int,input().split()) list[a]+=b sum=0 for l in range(1,len(list)): sum+=list[l] if sum>=k: print(l) exit()
s771060716
p03719
u170324846
1552323511
Python
Python (3.4.3)
py
Runtime Error
18
2940
81
a, b, c, = map(int, input().split()) print("Yes") if a <= c =< b else print("No")
s062483371
p03719
u170324846
1552323314
Python
Python (3.4.3)
py
Runtime Error
18
2940
81
a, b, c, = map(int, input().split()) pront("Yes") if a <= c =< b else print("No")
s413393084
p03719
u367130284
1551516987
Python
PyPy3 (2.4.0)
py
Runtime Error
163
38256
222
n,k=map(int,input().split()) L=[] for s in range(n): a,b=map(int,input().split()) L.append((a,b)) #print(L) L=sorted(L,key=lambda x:x[0]) #print(L) sun=0 for s in L: sun+=s[1] if sun+1>k: print(s[0]) exit()
s455437157
p03719
u652081898
1551340731
Python
Python (3.4.3)
py
Runtime Error
18
2940
98
a, b, c = map(int input().split()) if a <= c and c <= b: print("Yes") else: print("No")
s469092547
p03719
u652081898
1551340709
Python
Python (3.4.3)
py
Runtime Error
17
2940
97
a, b, c = map(int input().split()) if a <= c amd c <= b: print("Yes") else: print("No")
s182262279
p03719
u403984573
1551304700
Python
Python (3.4.3)
py
Runtime Error
18
2940
79
A,B,C=map(input().split()) if A<=C and B>=C: print("Yes") else: print("No")
s939393447
p03719
u375616706
1548102430
Python
Python (3.4.3)
py
Runtime Error
18
3064
558
import sys def input(): return sys.stdin.readline().strip() N, M = (list)(map(int, input().split())) edge = [] for _ in range(M): edge.append((list)(map(int, input().split()))) inf = 10**15 d = [inf]*(N+1) d[1] = 0 ans = inf for i in range(N-1): for a, b, c in edge: c = -c new_d = d[a]+c...
s401197951
p03719
u258375111
1544227085
Python
Python (3.4.3)
py
Runtime Error
18
2940
84
a,b,c=map(int,input(),split()) if c>=a and b<=a: print("Yes") else: print("No")
s612507183
p03719
u669382434
1544214655
Python
Python (3.4.3)
py
Runtime Error
18
2940
74
a,b,c=[int(i) for i in input().split()] print(["No" "Yes"][a<=c and c<=b])
s409174721
p03719
u397531548
1542556786
Python
Python (3.4.3)
py
Runtime Error
17
2940
155
N, K= map(int, input().split()) g = [] for i in range(N): a, b = map(int, input().split()) h=b*(b+1)/2 if h>=K: g.append(a) print(g[0])
s632393831
p03719
u397531548
1542556387
Python
Python (3.4.3)
py
Runtime Error
19
2940
144
N, K= map(int, input().split()) h=0 for i in range(N): a, b = map(int, input().split()) h+=b if h>=K: print(a) break
s630017983
p03719
u131405882
1541585362
Python
Python (3.4.3)
py
Runtime Error
18
3064
243
N, K = list(map(int, input().strip().split())) grid = [] k = 0 j = 0 for i in range(N): array = list(map(int, input().strip().split())) grid.append(array) for i in range(N): if k < K: k += grid[i-1][1] j += 1 print(str(grid[j][0])[K-k])
s169732825
p03719
u426108351
1540941057
Python
Python (3.4.3)
py
Runtime Error
17
2940
92
A, B, C = int(input().split()) if A <= C and C <= B: print("Yes") else: print("No")
s405631790
p03719
u923279197
1540157226
Python
Python (3.4.3)
py
Runtime Error
17
2940
78
a,b,c=map(int,input().split()) if a<=c<=b: promt('Yes') else: print('No')
s478033877
p03719
u320325426
1538593741
Python
Python (3.4.3)
py
Runtime Error
17
2940
76
a, b, c = map(int, input().split()) print("Yes" a <= c and c <= b else "No")
s068145131
p03719
u462538484
1537644095
Python
Python (3.4.3)
py
Runtime Error
17
2940
74
a, b, c = int(input()).split() print("Yes" if a <= c and c <= b else "No")
s623276752
p03719
u474270503
1536155507
Python
Python (3.4.3)
py
Runtime Error
17
2940
64
A,B,C=map(int, input().split()) print("Yes" if A<=C<=B else'No)
s917374770
p03719
u038027079
1535572341
Python
Python (3.4.3)
py
Runtime Error
17
2940
88
a,b,c = list(map(int, input())) if a <= c and c <= b: print("Yes") else: print("No")
s284951559
p03719
u513081876
1534816992
Python
Python (3.4.3)
py
Runtime Error
17
3060
149
N, M = map(int, input().split()) ab = [] for i in range(M): ab += list(map(int, input().split())) for i in range(1, N+1): print(ab.count(i))
s431310027
p03719
u274055316
1530739281
Python
Python (3.4.3)
py
Runtime Error
17
2940
103
a,b,c=input().split() int a int b int c if (c>=a) and (c<=b): print('Yes') else: print('No')
s956675418
p03719
u274055316
1530739127
Python
Python (3.4.3)
py
Runtime Error
17
2940
102
a,b,c=input().split() int a int b int c if (c>=a)and(c<=b): print('Yes') else: print('No')
s792501968
p03719
u274055316
1530738935
Python
Python (3.4.3)
py
Runtime Error
17
2940
105
a=int(input()) b=int(input()) c=int(input()) if (c>=a)and(c<=b): print('Yes') else: print('No')
s893774823
p03719
u274055316
1530738872
Python
Python (3.4.3)
py
Runtime Error
17
2940
102
a,b,c=input().split() int a int b int c if (c>=a)and(c<=b): print('Yes') else: print('No')
s369452600
p03719
u274055316
1530738240
Python
Python (3.4.3)
py
Runtime Error
17
2940
98
a,b,c=input().split() int a int b int c if c=>a and c=<b: print('YES') else: print('NO')
s247387672
p03719
u274055316
1530738100
Python
Python (3.4.3)
py
Runtime Error
17
2940
98
a,b,c=input().split() int a int b int c if c>=a and c<=b: print('YES') else: print('NO')
s269532981
p03719
u274055316
1530738025
Python
Python (3.4.3)
py
Runtime Error
17
2940
96
a,b,c=input().split int a int b int c if c>=a and c<=b: print('YES') else: print('NO')
s705155041
p03719
u579170193
1529453339
Python
Python (3.4.3)
py
Runtime Error
17
2940
55
a,b,c=int(input().split());print(("No","Yes")[a<=c<=b])