problem_id stringlengths 6 6 | buggy_code stringlengths 8 526k | fixed_code stringlengths 12 526k | labels listlengths 0 15 ⌀ | buggy_submission_id int64 1 1.54M | fixed_submission_id int64 2 1.54M | user_id stringlengths 10 10 | language stringclasses 8
values |
|---|---|---|---|---|---|---|---|
p02811 | k, x = map(int, input().split())
['No', 'Yes'][k * 500 >= x] | k, x = map(int, input().split())
print(['No', 'Yes'][k * 500 >= x]) | [
"call.add",
"call.arguments.change"
] | 610,385 | 610,386 | u062691227 | python |
p02811 | a,b = input().split()
if 500 * int(a) <= int(b):
print('Yes')
else:
print('No') | a,b = input().split()
if 500 * int(a) >= int(b):
print('Yes')
else:
print('No') | [
"misc.opposites",
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,387 | 610,388 | u591823813 | python |
p02811 | print((lambda x:('Yes' if (x[1]//500 <= x[0]) else 'No'))(list(map(int,input().split())))) | print((lambda x:('Yes' if (x[1] <= x[0]*500) else 'No'))(list(map(int,input().split())))) | [
"expression.operation.binary.remove"
] | 610,399 | 610,400 | u121698457 | python |
p02811 | print((lambda x:('Yes' if (x[1]//500 >= x[0]) else 'No'))(list(map(int,input().split())))) | print((lambda x:('Yes' if (x[1] <= x[0]*500) else 'No'))(list(map(int,input().split())))) | [
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 610,401 | 610,400 | u121698457 | python |
p02811 | k,x=map(int,input().split())
if x<=k*500:
print('YES')
else:
print('NO')
| k, x = map(int, input().split())
if x <= k*500:
print('Yes')
else:
print('No')
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,402 | 610,403 | u816234163 | python |
p02811 | K,X = map(int,input().split())
if 500 * K > X:
print("Yes")
else:
print("No") | K,X = map(int,input().split())
if 500 * K >= X:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,404 | 610,405 | u853187694 | python |
p02811 | k,x = map(int,input().spleit())
if x <= k*500:
print('Yes')
else:
print('No')
| k,x = map(int,input().split())
if x <= k*500:
print('Yes')
else:
print('No') | [
"assignment.value.change",
"identifier.change",
"call.arguments.change"
] | 610,410 | 610,409 | u998867748 | python |
p02811 | a,b=map(int,input().split())
if b<=a**500:
print("Yes")
else:
print("No") | a,b=map(int,input().split())
if b<=a*500:
print("Yes")
else:
print("No") | [
"control_flow.branch.if.condition.change"
] | 610,420 | 610,421 | u156383602 | python |
p02811 | k,x=map(int,input().split())
if 500*x>=x:
print('Yes')
else:
print('No') | k,x=map(int,input().split())
if 500*k>=x:
print('Yes')
else:
print('No') | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 610,422 | 610,423 | u086624329 | python |
p02811 | K, X = map(int, input())
print("Yes" if 500*K >= X else "No")
| K, X = map(int, input().split())
print("Yes" if 500*K >= X else "No")
| [
"call.add"
] | 610,430 | 610,431 | u165268875 | python |
p02811 | a,b = map(int,input().split(" "))
if a * 500 >= b:
print("yes")
else:
print("no")
| a,b = map(int,input().split(" "))
if a * 500 >= b:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,437 | 610,438 | u369630760 | python |
p02811 | x,k =map(int,(input().split()))
print(x,k)
if 500*x>=k:
print("Yes")
else:
print("No") | x,k =map(int,(input().split()))
#print(x,k)
if 500*x>=k:
print("Yes")
else:
print("No") | [
"call.remove"
] | 610,439 | 610,440 | u152402277 | python |
p02811 | K,X = map(int,input().split())
if X / 500 >= K:
print("No")
else:
print("Yes") | K,X = map(int,input().split())
if X / 500 > K:
print("No")
else:
print("Yes") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,451 | 610,452 | u859241851 | python |
p02811 | k , x = map(int,input().split())
print("Yes" if 500*k>x else "No") | k , x = map(int,input().split())
print("Yes" if 500*k>=x else "No") | [
"expression.operator.compare.change",
"call.arguments.change",
"io.output.change"
] | 610,455 | 610,456 | u508273185 | python |
p02811 | x, k = map(int, input().split())
print("Yes") if 500 * k >= 500 else print("No") | x, k = map(int, input().split())
print("Yes") if 500 * x >= k else print("No") | [
"identifier.change",
"expression.operation.binary.change",
"identifier.replace.add",
"literal.replace.remove"
] | 610,457 | 610,458 | u580920947 | python |
p02811 | K, X = map(int, input().split())
if 500*K > X:
print('Yes')
else:
print('No') | K, X = map(int, input().split())
if 500*K >= X:
print('Yes')
else:
print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,461 | 610,462 | u250061066 | python |
p02811 | k,x = (int(x) for x in input().split())
print("Yes" if 500 * k > x else "No") | k,x = (int(x) for x in input().split())
print("Yes" if 500 * k >= x else "No") | [
"expression.operator.compare.change",
"call.arguments.change",
"io.output.change"
] | 610,465 | 610,466 | u122428774 | python |
p02811 | #!/usr/bin/python3
# -*- coding: utf-8 -*-
K, X = [int(x) for x in input().split()]
if K * 500 >= X:
print("yes")
else:
print("No")
| #!/usr/bin/python3
# -*- coding: utf-8 -*-
# N = int(input())
# N = int(input().split())
# N, K = [int(x) for x in input().split()]
K, X = [int(x) for x in input().split()]
if K * 500 >= X:
print("Yes")
else:
print("No")
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,474 | 610,475 | u834279451 | python |
p02811 | K,M = map(int,input().split())
if 500*K >= X:
print("Yes")
else:
print("No") | K,M = map(int,input().split())
if 500*K >= M:
print("Yes")
else:
print("No") | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 610,476 | 610,477 | u208464243 | python |
p02811 | K, X = map(int,input().split)
if 500*K >= X:
print("Yes")
else:
print("No") | K, X = map(int, input().split())
if 500*K >= X:
print("Yes")
else:
print("No")
| [
"call.add"
] | 610,482 | 610,483 | u607905156 | python |
p02811 | k,x = map(int, input().split())
if 500*k>x: print('Yes')
else: print('No') | k,x = map(int, input().split())
if 500*k>=x: print('Yes')
else: print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,488 | 610,489 | u891422384 | python |
p02811 | #ライブラリの読み込み
import math
#入力値の格納
k,x = map(int,input().split())
#判定
if k * 500 >= x:
text = "yes"
else:
text = "No"
#表示
print(text)
| #ライブラリの読み込み
import math
#入力値の格納
k,x = map(int,input().split())
#判定
if k * 500 >= x:
text = "Yes"
else:
text = "No"
#表示
print(text)
| [
"literal.string.change",
"literal.string.case.change",
"assignment.value.change"
] | 610,496 | 610,497 | u953274507 | python |
p02811 | k,x=map(int,input().split())
if 500*k > x:
print("Yes")
else:
print("No") | k,x=map(int,input().split())
if 500*k >= x:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,504 | 610,505 | u995419623 | python |
p02811 | K, X = map(int, input().split())
K2 = K*500
if K2 > X:
print("Yes")
else:
print("No") | K, X = map(int, input().split())
K2 = K*500
if K2 >= X:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,514 | 610,515 | u158703648 | python |
p02811 | def main():
a = list(map(int, input().split()))
if 500 * a[0] >= 900:
print("Yes")
else:
print("No")
if __name__ == "__main__":
main() | def main():
a = list(map(int, input().split()))
if 500 * a[0] >= a[1]:
print("Yes")
else:
print("No")
if __name__ == "__main__":
main() | [
"identifier.replace.add",
"literal.replace.remove",
"control_flow.branch.if.condition.change"
] | 610,526 | 610,527 | u411353821 | python |
p02811 | K,X = map(int,input().split())
K = K * 500
if K > X :
print ('Yes')
else :
print ('No')
| K,X = map(int,input().split())
K = K * 500
if K >= X :
print ('Yes')
else :
print ('No')
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,539 | 610,540 | u354623416 | python |
p02811 | k, x = map(int, input().split())
if x <= (5 * 500):
print('Yes')
else:
print('No') | k, x = map(int, input().split())
if x <= (k * 500):
print('Yes')
else:
print('No') | [
"identifier.replace.add",
"literal.replace.remove",
"control_flow.branch.if.condition.change"
] | 610,546 | 610,547 | u644568755 | python |
p02811 | k, x = map(int, input().split())
if x >= k * 500:
print('Yes')
else:
print('No') | k, x = map(int, input().split())
if x <= (k * 500):
print('Yes')
else:
print('No') | [
"misc.opposites",
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,548 | 610,547 | u644568755 | python |
p02811 | a, b = map(int, input().split())
if 500 * a <= b:
print('Yes')
else:
print('No')
| a, b = map(int, input().split())
if 500 * a >= b:
print('Yes')
else:
print('No')
| [
"misc.opposites",
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,549 | 610,550 | u309423187 | python |
p02811 | k, x = map(int,input().split())
if (k*500) > x:
print('No')
else:
print('Yes') | k, x = map(int,input().split())
if (k*500) >= x:
print('Yes')
else:
print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change",
"call.remove",
"call.add"
] | 610,551 | 610,552 | u797550216 | python |
p02811 | K,X = map(int,input())
if K*500>=X:
print("Yes")
else:
print("No") | K,X = map(int,input().split())
if K*500>=X:
print("Yes")
else:
print("No") | [
"call.add"
] | 610,567 | 610,568 | u493130708 | python |
p02811 | input_line = input()
Line = input_line.split()
if 500*int(Line[0]) > int(Line[1]):
print('yes')
else:
print('no') | input_line = input()
Line = input_line.split()
if 500*int(Line[0]) >= int(Line[1]):
print('Yes')
else:
print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,569 | 610,570 | u256019645 | python |
p02811 | input_line = input()
Line = input_line.split()
if 500*int(Line[0]) >= int(Line[1]):
print('yes')
else:
print('no') | input_line = input()
Line = input_line.split()
if 500*int(Line[0]) >= int(Line[1]):
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,571 | 610,570 | u256019645 | python |
p02811 | input_line = input()
Line = input_line.split()
if 500*int(Line[0]) > int(Line[1]):
print('Yes')
else:
print('No') | input_line = input()
Line = input_line.split()
if 500*int(Line[0]) >= int(Line[1]):
print('Yes')
else:
print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,572 | 610,570 | u256019645 | python |
p02811 | processedIp = input.split(' ')
k = int(processedIp[0])
x = int(processedIp[1])
totalValue = k*500
if (totalValue >= x):
print("Yes")
else:
print("No") | processedIp = input().split(" ")
k = int(processedIp[0])
x = int(processedIp[1])
totalValue = k*500
if (totalValue >= x):
print("Yes")
else:
print("No") | [
"call.add",
"literal.string.change",
"assignment.value.change",
"call.arguments.change"
] | 610,582 | 610,583 | u089230684 | python |
p02811 | processedIp = input.split(" ")
k = int(processedIp[0])
x = int(processedIp[1])
totalValue = k*500
if (totalValue >= x):
print("Yes")
else:
print("No") | processedIp = input().split(" ")
k = int(processedIp[0])
x = int(processedIp[1])
totalValue = k*500
if (totalValue >= x):
print("Yes")
else:
print("No") | [
"call.add"
] | 610,584 | 610,583 | u089230684 | python |
p02811 | from sys import stdin
import math
n, m = [int(x) for x in stdin.readline().rstrip().split()]
if n * 500 > m:
print('Yes')
else:
print('No') | from sys import stdin
import math
n, m = [int(x) for x in stdin.readline().rstrip().split()]
if n * 500 >= m:
print('Yes')
else:
print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,591 | 610,592 | u436664080 | python |
p02811 | k, x = map(int, input().split())
print('Yes') if k*500==x else print('No') | k, x = map(int, input().split())
print('Yes') if k*500>=x else print('No') | [
"expression.operator.compare.change"
] | 610,609 | 610,610 | u566321790 | python |
p02811 | a,x=map(int, input().split())
if(a*500>=X):
print('Yes')
else:
print('No')
| a,X=map(int, input().split())
if(a*500>=X):
print('Yes')
else:
print('No')
| [
"assignment.variable.change",
"identifier.change"
] | 610,615 | 610,616 | u266346465 | python |
p02811 | K,X=map(int,input().split())
if 500*K >= X:
print('yes')
else:
print('no') | K,X=map(int,input().split())
if 500*K >= X:
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,629 | 610,628 | u216752093 | python |
p02811 | K,X=map(int,input().split)
if 500*K >= X:
print('yes')
else:
print('no') | K,X=map(int,input().split())
if 500*K >= X:
print('Yes')
else:
print('No') | [
"call.add",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,630 | 610,628 | u216752093 | python |
p02811 | K,X=map(int,input().split)
if 500*K>=X:
print('yes')
else:
print('no') | K,X=map(int,input().split())
if 500*K >= X:
print('Yes')
else:
print('No') | [
"call.add",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,631 | 610,628 | u216752093 | python |
p02811 | K, X = map(int, input())
print("Yes" if 500*K>=X else "No") | K, X = map(int, input().split())
print("Yes" if 500*K>=X else "No") | [
"call.add"
] | 610,645 | 610,646 | u246639932 | python |
p02811 | k,x = map(int, input().split())
if 2*k >= x:
print("Yes")
else:
print("No") | k,x = map(int, input().split())
if 500*k >= x:
print("Yes")
else:
print("No")
| [
"literal.number.integer.change",
"control_flow.branch.if.condition.change"
] | 610,652 | 610,653 | u362563655 | python |
p02811 | K,X = map(int, input().split())
if 500*K>=x:
print('yes')
else:
print('No')
| k,x= map(int, input().split())
if 500*k>=x:
print('Yes')
else:
print('No') | [
"assignment.variable.change",
"identifier.change",
"control_flow.branch.if.condition.change",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,665 | 610,666 | u886459614 | python |
p02811 | from sys import stdin
K, X = [int(x) for x in stdin.readline().rstrip().split()]
if X >= K*500:
print("Yes")
else:
print("No") | from sys import stdin
K, X = [int(x) for x in stdin.readline().rstrip().split()]
if X <= K*500:
print("Yes")
else:
print("No") | [
"misc.opposites",
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,709 | 610,708 | u868981240 | python |
p02811 | K,X = map(int,input().split())
if K * 500 > X:
print("Yes")
else:
print("No")
| K,X = map(int,input().split())
if K * 500 >= X:
print("Yes")
else:
print("No")
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,710 | 610,711 | u334703235 | python |
p02811 | a = list(map(int,input().split()))
if 500 * a[0] >= a[1] :
print(Yes)
else :
print(No) | a = list(map(int,input().split()))
if 500*a[0] >= a[1] :
print('Yes')
else :
print('No') | [
"call.arguments.change"
] | 610,722 | 610,723 | u127025777 | python |
p02811 | k,x=map(int,input().split());print("YNeos"[500*k>x::2])
| k,x=map(int,input().split());print('YNeos'[500*k<x::2]) | [
"literal.string.change",
"call.arguments.change",
"io.output.change",
"misc.opposites",
"expression.operator.compare.change",
"variable_access.subscript.index.change"
] | 610,731 | 610,732 | u788703383 | python |
p02811 | def solve():
N, M = map(int, input().split())
return 'Yes' if None*500 >= M else 'No'
print(solve()) | def solve():
N, M = map(int, input().split())
return 'Yes' if N*500 >= M else 'No'
print(solve()) | [
"function.return_value.change",
"expression.operation.binary.change"
] | 610,733 | 610,734 | u112317104 | python |
p02811 | K, X = map(int, input())
if 500 * X >= X:
print('Yes')
else:
print('No')
| K, X = map(int, input().split())
if K * 500 >= X:
print('Yes')
else:
print('No') | [
"call.add",
"identifier.replace.add",
"literal.replace.remove",
"control_flow.branch.if.condition.change",
"identifier.replace.remove",
"literal.replace.add"
] | 610,737 | 610,738 | u509392332 | python |
p02811 | import sys
from math import gcd
from itertools import groupby as gb
from itertools import permutations as perm
from itertools import combinations as comb
from collections import Counter as C
from collections import defaultdict as dd
sys.setrecursionlimit(10**5)
def y(f):
if f:
print('Yes')
else:
... | import sys
from math import gcd
from itertools import groupby as gb
from itertools import permutations as perm
from itertools import combinations as comb
from collections import Counter as C
from collections import defaultdict as dd
sys.setrecursionlimit(10**5)
def y(f):
if f:
print('Yes')
else:
... | [
"identifier.change",
"call.function.change"
] | 610,754 | 610,755 | u832039789 | python |
p02811 | def main():
K,X = list(map(int,input().split()))
price = 500 * K
if(price > X):
print('Yes')
else:
print('No')
if __name__ == "__main__":
main() | def main():
K,X = list(map(int,input().split()))
price = 500 * K
if(price >= X):
print('Yes')
else:
print('No')
if __name__ == "__main__":
main()
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,773 | 610,774 | u131411061 | python |
p02811 | a,b = map(int, input().split())
if a * 500 > b:
print("Yes")
else:
print("No") | a,b = map(int, input().split())
if a * 500 >= b:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,775 | 610,776 | u970809473 | python |
p02811 | N,R = map(int, input().split())
if R < N *500:
print('Yes')
else:
print('No')
| N,R = map(int, input().split())
if R <= N *500:
print('Yes')
else:
print('No')
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,785 | 610,786 | u310394471 | python |
p02811 | # -*- coding: utf-8 -*-
#入力
n,k = map(int,input().split())
if (500*n > k):
print("Yes")
else:
print("No") | # -*- coding: utf-8 -*-
#入力
n,k = map(int,input().split())
if (500*n >= k):
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,787 | 610,788 | u319609701 | python |
p02811 | k, x = map(int, input())
print("Yes" if 500*k >= x else "No") | k, x = map(int, input().split())
print("Yes" if 500*k >= x else "No") | [
"call.add"
] | 610,791 | 610,792 | u540698208 | python |
p02811 | ip = input().split()
n = ip[0]
k = ip[1]
if n * 500 >= k:
print("Yes")
else:
print("No") | ip = input().split()
n = int(ip[0])
k = int(ip[1])
if n * 500 >= k:
print("Yes")
else:
print("No") | [
"call.add",
"call.arguments.change"
] | 610,793 | 610,794 | u571608999 | python |
p02811 | a,b=map(int,input().split())
c = int(500*a-b)
if c >0:
print("Yes")
else:
print("No") | a,b=map(int,input().split())
c = int(500*a-b)
if c >=0:
print("Yes")
else:
print("No")
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,801 | 610,802 | u403547519 | python |
p02811 | a,b=map(int,input().split())
c=int(500*a-b)
if c >0:
print(Yes)
else:
print(No) | a,b=map(int,input().split())
c = int(500*a-b)
if c >=0:
print("Yes")
else:
print("No")
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change",
"call.arguments.change"
] | 610,803 | 610,802 | u403547519 | python |
p02811 | input1 = list(map(int,input().split()))
K = input[0]
X = input[1]
if K * 500 >= X:
print("Yes")
else:
print("No") | input1 = list(map(int,input().split()))
K = input1[0]
X = input1[1]
if K * 500 >= X:
print("Yes")
else:
print("No") | [
"assignment.value.change",
"identifier.change"
] | 610,811 | 610,812 | u923270446 | python |
p02811 | K,X=map(int,input())
if 500*K>=X:
print("Yes")
else:
print("No") | K,X=map(int,input().split())
if 500*K>=X:
print("Yes")
else:
print("No") | [
"call.add"
] | 610,817 | 610,818 | u349444371 | python |
p02811 | k, x = map(int, input().split())
print('yes' if x <= 500 * k else 'no') | k, x = map(int, input().split())
print('Yes' if x <= 500 * k else 'No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,819 | 610,820 | u133936772 | python |
p02811 | X,K=map(int,input().split())
if 500*X>K :
print('Yes')
else :
print('No')
| X,K=map(int,input().split())
if 500*X>=K:
print('Yes')
else :
print('No')
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,821 | 610,822 | u355154595 | python |
p02811 | X,K=map(int,input().split())
if 500*X>K :
print('Yes')
else :
print('No')
| X,K=map(int,input().split())
if 500*X>=K:
print('Yes')
else :
print('No')
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,823 | 610,822 | u355154595 | python |
p02811 | k, x = map(int, input().split())
print(k, x)
if k * 500 >= x:
print('Yes')
else:
print('No') | k, x = map(int, input().split())
if k * 500 >= x:
print('Yes')
else:
print('No') | [
"call.remove"
] | 610,826 | 610,827 | u433147299 | python |
p02811 | k, x = map(int, input().split())
if k * 500 == x:
print('Yes')
else:
print('No') | k, x = map(int, input().split())
if k * 500 >= x:
print('Yes')
else:
print('No') | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,828 | 610,827 | u433147299 | python |
p02811 | a,b = map(int, input().split())
sum = 500 * b
if sum >= b:
print('Yes')
else:
print('No') | a,b = map(int, input().split())
sum = 500 * a
if sum >= b:
print('Yes')
else:
print('No') | [
"assignment.value.change",
"identifier.change",
"expression.operation.binary.change"
] | 610,831 | 610,832 | u321163853 | python |
p02811 | get = input().split()
K = get[0]
X = get[1]
if K * 500 >= X:
print("Yes")
else:
print("No") | get = input().split()
K = int(get[0])
X = int(get[1])
if K * 500 >= X:
print("Yes")
else:
print("No") | [
"call.add",
"call.arguments.change"
] | 610,833 | 610,834 | u824756230 | python |
p02811 | k, x = [int(v) for v in input().split()]
if 500 * k >= x:
print("YES");
else:
print("NO"); | k, x = [int(v) for v in input().split()]
if 500 * k >= x:
print("Yes");
else:
print("No");
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,840 | 610,841 | u006883624 | python |
p02811 | K,X = map(int,input().split())
if K*500>X:
print("Yes")
else:
print("No") | K,X = map(int,input().split())
if K*500>=X:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,850 | 610,851 | u927807968 | python |
p02811 | def judge(k, x):
total = 500 * x
if (total >= x):
print('Yes')
else:
print('No')
a, b = map(int, input().split())
judge(a, b) | def judge(k, x):
total = 500 * k
if (total >= x):
print('Yes')
else:
print('No')
a, b = map(int, input().split())
judge(a, b) | [
"assignment.value.change",
"identifier.change",
"expression.operation.binary.change"
] | 610,886 | 610,887 | u318150500 | python |
p02811 | K, X = map(int, input().split())
if 500*K >= X:
print('YES')
else:
print('NO') | K, X = map(int, input().split())
if 500*K >= X:
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,894 | 610,895 | u053909865 | python |
p02811 | K,X = map(int,input().split())
if K*500>X:
print('Yes')
else:
print('No') | K,X = map(int,input().split())
if K*500>=X:
print('Yes')
else:
print('No')
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,902 | 610,903 | u948779457 | python |
p02811 | N,M = (int(x) for x in input().split())
if N*5 >= M:
print('Yes')
else:
print('No') | N,M = (int(x) for x in input().split())
if N*500 >= M:
print('Yes')
else:
print('No') | [
"literal.number.integer.change",
"control_flow.branch.if.condition.change"
] | 610,909 | 610,910 | u318740143 | python |
p02811 | K,X = map(int,input().split())
print('Yes') if K*500 > X else print('No') | K,X = map(int,input().split())
print('Yes') if K*500 >= X else print('No')
| [
"expression.operator.compare.change"
] | 610,918 | 610,919 | u086503932 | python |
p02811 | k,x = [int(i) for i in input().split()]
if k*500 >= x:
print("yes")
else:
print("no") | k,x = [int(i) for i in input().split()]
if k*500 >= x:
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,920 | 610,921 | u693716675 | python |
p02811 | a=list(map(int,input().split()))
k=a[0]
x=a[1]
if x<=500*k:
print('yes')
else:
print('no') | a=list(map(int,input().split()))
k=a[0]
x=a[1]
if x<=500*k:
print('Yes')
else:
print('No') | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,926 | 610,927 | u322440802 | python |
p02811 | K, X = input().split()
G = 500 * int (K)
if G > X:
print("Yes")
else:
print("No") | K, X = input().split()
G = 500 * int(K)
if G >= int(X):
print("Yes")
else:
print("No")
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change",
"call.add"
] | 610,948 | 610,949 | u860737437 | python |
p02811 | K,X=map(int,input().split())
print("YES" if K*500 >= X else "NO") | K,X=map(int,input().split())
print("Yes" if K*500 >= X else "No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,952 | 610,953 | u589381719 | python |
p02811 | k,n = map(int,input().split())
print('Yes' if k*500 > n else 'No') | k,n = map(int,input().split())
print('Yes' if k*500 >= n else 'No') | [
"expression.operator.compare.change",
"call.arguments.change",
"io.output.change"
] | 610,954 | 610,955 | u825769322 | python |
p02811 | K, X = input().split()
total = int(K) * 500
if total >= int(X):
print("YES")
else:
print("NO") | K, X = input().split()
total = int(K) * 500
if total >= int(X):
print("Yes")
else:
print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 610,964 | 610,965 | u378782369 | python |
p02811 | K,X = map(int,input().split())
P = K*500
if (p>=X):
print("Yes")
elif (p<=X):
print("No") | K,X = map(int,input().split())
P = K*500
if (P>=X):
print("Yes")
elif (P<=X):
print("No") | [
"identifier.change",
"control_flow.branch.if.condition.change"
] | 610,968 | 610,969 | u167254893 | python |
p02811 | K, X = input().split()
mon = 500*int(K)
if mon > int(X):
print("Yes")
else:
print("No") | K, X = input().split()
mon = 500*int(K)
if mon >= int(X):
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 610,972 | 610,973 | u436611990 | python |
p02811 | n, m = map(int, input().split())
if n*500 < m:
print("No")
else:
pprint("Yes") | n, m = map(int, input().split())
if n*500 < m:
print("No")
else:
print("Yes") | [
"identifier.change",
"call.function.change",
"io.output.change"
] | 610,978 | 610,979 | u871352270 | python |
p02811 | k, x = map(int, input())
print('Yes' if 500 * k >= x else 'No') | k, x = map(int, input().split())
print('Yes' if 500 * k >= x else 'No')
| [
"call.add"
] | 611,007 | 611,008 | u170183831 | python |
p02811 | k, x = map(int,input().split())
if 500*k<x:
print("Yes")
else:
print("No") | k, x = map(int,input().split())
if 500*k<x:
print("No")
else:
print("Yes") | [
"literal.string.change",
"call.arguments.change",
"io.output.change"
] | 611,019 | 611,020 | u234140613 | python |
p02811 | n, k = map(int,input().spllit())
if n * 500 >= k :
print("Yes")
else:
print("No") | n, k = map(int,input().split())
if n * 500 >= k :
print("Yes")
else:
print("No") | [
"assignment.value.change",
"identifier.change",
"call.arguments.change"
] | 611,021 | 611,022 | u589578850 | python |
p02811 | from functools import lru_cache
import sys
sys.setrecursionlimit(10**8)
K, X = map(int, input().split())
@lru_cache(maxsize=None)
def dp(k,x):
if k*500 <= x:
result = 'No'
else:
result = 'Yes'
return result
print(dp(K,X))
| from functools import lru_cache
import sys
sys.setrecursionlimit(10**8)
K, X = map(int, input().split())
@lru_cache(maxsize=None)
def dp(k,x):
if k*500 < x:
result = 'No'
else:
result = 'Yes'
return result
print(dp(K,X))
| [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 611,027 | 611,028 | u607729897 | python |
p02811 | from functools import lru_cache
import sys
sys.setrecursionlimit(10**8)
K, X = map(int, input().split())
@lru_cache(maxsize=None)
def dp(k,x):
if k*2 <= x:
result = 'No'
else:
result = 'Yes'
return result
print(dp(K,X))
| from functools import lru_cache
import sys
sys.setrecursionlimit(10**8)
K, X = map(int, input().split())
@lru_cache(maxsize=None)
def dp(k,x):
if k*500 < x:
result = 'No'
else:
result = 'Yes'
return result
print(dp(K,X))
| [] | 611,029 | 611,028 | u607729897 | python |
p02811 | k, a = map(int(), input().split())
if k * 500 >= a:
print('Yes')
else:
print('No') | k, a = map(int, input().split())
if k * 500 >= a:
print('Yes')
else:
print('No') | [
"call.arguments.change"
] | 611,030 | 611,031 | u723711163 | python |
p02811 | k, a = map(int(), input())
if k * 500 >= a:
print('Yes')
else:
print('No') | k, a = map(int, input().split())
if k * 500 >= a:
print('Yes')
else:
print('No') | [
"call.arguments.change",
"call.add"
] | 611,032 | 611,031 | u723711163 | python |
p02811 | import sys
row = sys.stdin.readline
def read_ints(row):
return list(map(int, row().split()))
K,X = read_ints(row)
print("Yes" if K * X >= 2000 else "No") | import sys
row = sys.stdin.readline
def read_ints(row):
return list(map(int, row().split()))
K,X = read_ints(row)
print("Yes" if K * 500 >= X else "No") | [
"identifier.replace.remove",
"literal.replace.add",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change",
"identifier.replace.add",
"literal.replace.remove"
] | 611,054 | 611,055 | u274262034 | python |
p02811 | a,b = map(int, input().split())
if 500*a > b:
print("Yes")
else:
print("No") | a,b = map(int, input().split())
if 500*a >= b:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change"
] | 611,056 | 611,057 | u947327691 | python |
p02811 | a,b = map(int, input().split())
if 500*a > b:
print("YES")
else:
print("NO") | a,b = map(int, input().split())
if 500*a >= b:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change",
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 611,058 | 611,057 | u947327691 | python |
p02811 | k, x = input().split("")
k = int(k)
x = int(x)
if 500*k >= x:
print('Yes')
else:
print('No') | k,x = input().split(' ')
k = int(k)
x = int(x)
if 500 * k >= x:
print('Yes')
else:
print('No') | [] | 611,061 | 611,062 | u406405116 | python |
p02811 | k, x = map(int, input().split())
print("Yes" if x >= k * 500 else "No") | k, x = map(int, input().split())
print("Yes" if k * 500 >= x else "No") | [] | 611,069 | 611,070 | u411255472 | python |
p02811 | K, X= map(int, input().split())
if K * 500 >= X:
print("Yes")
else:
prine("No") | K, X= map(int, input().split())
if K * 500 >= X:
print("Yes")
else:
print("No") | [
"identifier.change",
"call.function.change"
] | 611,073 | 611,074 | u985963315 | python |
p02811 | K, X= map(int, input().split())
if K * 500 > X:
print("Yes")
else:
prine("No") | K, X= map(int, input().split())
if K * 500 >= X:
print("Yes")
else:
print("No") | [
"expression.operator.compare.change",
"control_flow.branch.if.condition.change",
"identifier.change",
"call.function.change"
] | 611,075 | 611,074 | u985963315 | python |
p02811 | N, X = map(int, input().split())
print("YES") if N*500 >= X else print("NO") | N, X = map(int, input().split())
print("Yes") if N*500 >= X else print("No") | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"io.output.change"
] | 611,082 | 611,083 | u779728630 | python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.