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 |
|---|---|---|---|---|---|---|---|
p02777 | S, T = map(str, input().split())
A, B = map(int, input().split())
U = input()
if U == S:
A = A-1
if U == T:
B == B-1
print(A,B) | S, T = map(str, input().split())
A, B = map(int, input().split())
U = input()
if U == S:
A = A-1
if U == T:
B = B-1
print(A,B) | [
"expression.operation.compare.replace.remove",
"assignment.replace.add",
"misc.typo"
] | 574,629 | 574,630 | u599925824 | python |
p02777 | s,t = map(int,input().split())
a,b = map(int,input().split())
u = str(input())
if u == s:
a -= 1
else:
b -= 1
print(a,b) | s,t = map(str,input().split())
a,b = map(int,input().split())
u = str(input())
if u == s:
a -= 1
else:
b -= 1
print(a,b) | [
"assignment.value.change",
"identifier.change",
"call.arguments.change"
] | 574,664 | 574,665 | u667024514 | python |
p02777 | a,b = map(str, input().split())
c,d = map(int, input().split())
e = input()
if a == e:
c -= 1
else:
d -= 1
print(a,b) | a,b = map(str, input().split())
c,d = map(int, input().split())
e = input()
if a == e:
c -= 1
else:
d -= 1
print(c,d)
| [
"identifier.change",
"call.arguments.change",
"io.output.change"
] | 574,668 | 574,669 | u427984570 | python |
p02777 | s,t=input().split(' ')
a,b=map(int,input().split())
u=input()
if u==s:
a=a-1
if u==t:
b=b-1
print(a+' '+b) | s,t=input().split(' ')
a,b=map(int,input().split())
u=input()
if u==s:
a=a-1
if u==t:
b=b-1
print(str(a)+' '+str(b))
| [
"call.add",
"call.arguments.change"
] | 574,707 | 574,708 | u249412218 | python |
p02777 | import sys
def main():
k = input().replace('\n','').split()
a = input().replace('\n','').split()
u = input().replace('\n','')
a[k.index(u)]=int(a[k.index(u)]) - 1
print(str(a[0]) + ' ' + a[1])
if __name__ == '__main__':
input = sys.stdin.readline
main()
| import sys
def main():
k = input().replace('\n','').split()
a = input().replace('\n','').split()
u = input().replace('\n','')
a[k.index(u)]=int(a[k.index(u)]) - 1
print(str(a[0]) + ' ' + str(a[1]))
if __name__ == '__main__':
input = sys.stdin.readline
main()
| [
"call.add",
"call.arguments.change"
] | 574,711 | 574,712 | u606393507 | python |
p02777 | s, t = input().split(" ")
a, b = (int(x) for x in input().split(" "))
u = input()
if s==u:
print(s-1,t)
else:
print(s,t-1) | s, t = input().split(" ")
a, b = (int(x) for x in input().split(" "))
u = input()
if s==u:
print(a-1, b)
else:
print(a, b-1) | [
"identifier.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,714 | 574,715 | u314397652 | python |
p02777 | L = input().split()
S = L[0]
T = L[0]
a,b = map(int, input().split())
U = input()
if U == S:
a = a-1
elif U == T:
b = b -1
print(a, b) | L = input().split()
S = L[0]
T = L[1]
a,b = map(int, input().split())
U = input()
if (U == S):
a = a -1
elif(U == T):
b = b-1
print(a, b) | [
"literal.number.integer.change",
"assignment.value.change",
"variable_access.subscript.index.change",
"control_flow.branch.if.condition.change"
] | 574,725 | 574,726 | u685726146 | python |
p02777 | s,t= input().split()
a,b=map(int,input().split())
u=input()
if u==s:
a-=1
else:
t-=1
print(a,b) | s,t= input().split()
a,b=map(int,input().split())
u=input()
if u==s:
a-=1
else:
b-=1
print(a,b)
| [
"identifier.change"
] | 574,758 | 574,759 | u398355880 | python |
p02777 | #!python3.4
# -*- coding: utf-8 -*-
# abc154/abc154_a
import sys
s2nn = lambda s: [int(c) for c in s.split(' ')]
ss2nn = lambda ss: [int(s) for s in list(ss)]
ss2nnn = lambda ss: [s2nn(s) for s in list(ss)]
i2s = lambda: sys.stdin.readline().rstrip()
i2n = lambda: int(i2s())
i2nn = lambda: s2nn(i2s())
ii2ss = lambda n... | #!python3.4
# -*- coding: utf-8 -*-
# abc154/abc154_a
import sys
s2nn = lambda s: [int(c) for c in s.split(' ')]
ss2nn = lambda ss: [int(s) for s in list(ss)]
ss2nnn = lambda ss: [s2nn(s) for s in list(ss)]
i2s = lambda: sys.stdin.readline().rstrip()
i2n = lambda: int(i2s())
i2nn = lambda: s2nn(i2s())
ii2ss = lambda n... | [
"identifier.change",
"variable_access.subscript.index.change",
"call.arguments.change",
"io.output.change"
] | 574,760 | 574,761 | u106311097 | python |
p02777 | S, T = input().split()
A, B = [int(i) for i in input().split()]
U = input().split()
if U == S :
A = A - 1
else :
B = B - 1
print(A, B) | S, T = input().split()
A, B = [int(i) for i in input().split()]
U = input()
if U == S :
A = A - 1
else :
B = B - 1
print(A, B) | [
"call.remove"
] | 574,772 | 574,773 | u693007703 | python |
p02777 | S, T = input().split()
A, B = map(int, input().split())
U = input().split()
if S == U:
print(A-1, B)
else:
print(A, B-1) | S, T = input().split()
A, B = map(int, input().split())
U = input()
if S == U:
print(A-1, B)
else:
print(A, B-1) | [
"call.remove"
] | 574,785 | 574,786 | u436611990 | python |
p02778 | N=input()
i=0
while i<=len(N):
print("x" ,end='')
i+=1 | N=input()
i=0
while i<len(N):
print("x" ,end='')
i+=1 | [
"expression.operator.compare.change",
"control_flow.loop.condition.change"
] | 574,791 | 574,792 | u502594696 | python |
p02778 | s = input()
for i in len(s):
print(x,end="")
| s = input()
for i in range(len(s)):
print("x",end="") | [
"call.add",
"call.arguments.change",
"control_flow.loop.range.bounds.upper.change"
] | 574,793 | 574,794 | u780698286 | python |
p02778 | s = input()
for i in list(s):
print(x,end="") | s = input()
for i in range(len(s)):
print("x",end="") | [
"identifier.change",
"call.function.change",
"call.arguments.add",
"call.arguments.change",
"control_flow.loop.range.bounds.upper.change"
] | 574,795 | 574,794 | u780698286 | python |
p02778 | s = input()
print(x * len(s)) | s = input()
print("x" * len(s))
| [
"call.arguments.change"
] | 574,796 | 574,797 | u780698286 | python |
p02778 | S=input()
x=""
for i in range(len(S)):
x+"x"
print(x)
| S=input()
x=""
for i in range(len(S)):
x+="x"
print(x) | [
"assignment.compound.arithmetic.replace.add",
"expression.operator.arithmetic.replace.remove",
"expression.operation.binary.change"
] | 574,804 | 574,805 | u038216098 | python |
p02778 | n = len(input())
print('x' + n) | n = len(input())
print('x' * n) | [
"expression.operator.arithmetic.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,806 | 574,807 | u038021590 | python |
p02778 | S=len(input())
print(x*S) | S=len(input())
print('x'*S)
| [
"call.arguments.change"
] | 574,810 | 574,811 | u729119068 | python |
p02778 | s = input()
print(x*len(s)) | s = input()
print('x'*len(s)) | [
"call.arguments.change"
] | 574,818 | 574,819 | u175590965 | python |
p02778 | print('*'*len(input())) | print('x'*len(input())) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,822 | 574,823 | u974444946 | python |
p02778 | S = input()
S_len = len(S)
print(x* S_len) | S = input()
S_len = len(S)
print("x" * S_len) | [
"call.arguments.change"
] | 574,827 | 574,828 | u507145838 | python |
p02778 | s=input()
n=len(s)
ans=[]
for i in range(n):
ans.append("x")
print("",join(ans)) | s=input()
n=len(s)
ans=[]
for i in range(n):
ans.append("x")
print("".join(ans)) | [
"call.arguments.change",
"io.output.change"
] | 574,834 | 574,835 | u437351386 | python |
p02778 | s=input()
n=len(s)
ans=0
for i in range(n):
ans.append("x")
print("",join(ans))
| s=input()
n=len(s)
ans=[]
for i in range(n):
ans.append("x")
print("".join(ans)) | [
"assignment.value.change",
"call.arguments.change",
"io.output.change"
] | 574,836 | 574,835 | u437351386 | python |
p02778 | n = input()
print("×"*len(n)) | n = input()
print("x"*len(n)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,841 | 574,842 | u840570107 | python |
p02778 | S = input()
print("x"*count(S)) | S = input()
print("x" * len(S)) | [
"identifier.change",
"call.function.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,851 | 574,852 | u612635771 | python |
p02778 | S = input()
print("x"*S.count()) | S = input()
print("x" * len(S)) | [
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,853 | 574,852 | u612635771 | python |
p02778 | S = input()
T = ''
for _ in len(S):
T += 'x'
print(T)
| S = input()
T = ''
for _ in range(len(S)):
T += 'x'
print(T) | [
"call.add",
"call.arguments.change",
"control_flow.loop.range.bounds.upper.change"
] | 574,876 | 574,877 | u446371873 | python |
p02778 | s = input()
print(['x']*len(s))
| s = input()
print('x'*len(s))
| [
"call.arguments.change"
] | 574,878 | 574,879 | u967864815 | python |
p02778 | s = input()
s.replace(s, 'x' * len(s)) | s = input()
print(s.replace(s, 'x' * len(s))) | [
"call.add",
"call.arguments.change"
] | 574,880 | 574,882 | u629540524 | python |
p02778 | S = input()
print('X' * len(S)) | S = input()
print('x' * len(S)) | [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,885 | 574,886 | u670397449 | python |
p02778 | S = input()
"x"*len(S) | S = input()
print("x"*len(S)) | [
"call.add",
"call.arguments.change"
] | 574,887 | 574,888 | u382639013 | python |
p02778 | s=input()
print(x*len(s)) | s=input()
print('x'*len(s)) | [
"call.arguments.change"
] | 574,889 | 574,890 | u350093546 | python |
p02778 | s = input()
l = []
for i in s:
i = 'x'
i += i*(len(s))
print(i)
| s = input()
l = []
for i in s:
i = 'x'
i += i*(len(s)-1)
print(i)
| [
"expression.operation.binary.add"
] | 574,894 | 574,895 | u045953894 | python |
p02778 | S=input()
s=len(S)
for i in range(s):
print("x") | S=input()
s=len(S)
for i in range(s):
print("x",end="") | [
"call.arguments.add"
] | 574,919 | 574,920 | u172966990 | python |
p02778 | s=input()
y=lens(s)
print("x"*y) | s=input()
y=len(s)
print("x"*y)
| [
"assignment.value.change",
"identifier.change",
"call.function.change"
] | 574,924 | 574,925 | u694467277 | python |
p02778 | s = open(0).read()
print("x" * len(s)) | s = open(0).read().rstrip()
print("x" * len(s)) | [
"call.add"
] | 574,931 | 574,932 | u167681750 | python |
p02778 | S = input()
ans = []
for i in range(1,len(S)):
ans.append("x")
print("".join(ans)) | S = input()
ans = []
for i in range(len(S)):
ans.append("x")
print("".join(ans)) | [
"call.arguments.change"
] | 574,938 | 574,939 | u189089176 | python |
p02778 | S = input()
S.replace()
ans = []
for i in range(len(s)):
ans.append("x")
print("".join(ans)) | S = input()
ans = []
for i in range(len(S)):
ans.append("x")
print("".join(ans)) | [
"call.remove",
"identifier.change",
"call.arguments.change",
"control_flow.loop.range.bounds.upper.change"
] | 574,940 | 574,939 | u189089176 | python |
p02778 | s = input()
S = len(s)
print(x*S) | s = input()
S = len(s)
print("x"*S) | [
"call.arguments.change"
] | 574,945 | 574,946 | u798260206 | python |
p02778 | print(''.join(['*']*len(input()))) | print(''.join(['x']*len(input()))) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,951 | 574,952 | u619144316 | python |
p02778 | S = input()
print(x * len(S))
| S = input()
print('x' * len(S))
| [
"call.arguments.change"
] | 574,956 | 574,957 | u101350975 | python |
p02778 | s=len(input())
print(x*s) | s=len(input())
print('x'*s) | [
"call.arguments.change"
] | 574,983 | 574,984 | u324326379 | python |
p02778 | s=input()
l=len(s)
t=[]
for i in range(l):
t.append(x)
n=''.join(t)
print(n)
| s=input()
l=len(s)
t=[]
for i in range(l):
t.append('x')
n=''.join(t)
print(n)
| [
"call.arguments.change"
] | 574,991 | 574,992 | u884601206 | python |
p02778 | s = st(input())
string = list(s)
cnt = sum(string)
print("x" * int(cnt)) | s = str(input())
string = list(s)
cnt = len(string)
print("x" * cnt) | [
"assignment.value.change",
"identifier.change",
"call.function.change",
"call.remove",
"call.arguments.change"
] | 574,993 | 574,994 | u502200133 | python |
p02778 | s = st(input())
string = list(s)
cnt = sum(string)
print("x" * cnt) | s = str(input())
string = list(s)
cnt = len(string)
print("x" * cnt) | [
"assignment.value.change",
"identifier.change",
"call.function.change"
] | 574,996 | 574,994 | u502200133 | python |
p02778 | print(len(input()) * '*')
| print(len(input()) * 'x')
| [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 574,999 | 575,000 | u811202694 | python |
p02778 | S = str(input())
ans = []
for i in range(len(S)):
ans.append(x)
ans = ''.join(ans)
print(ans) | S = str(input())
ans = []
for i in range(len(S)):
ans.append('x')
ans = ''.join(ans)
print(ans) | [
"call.arguments.change"
] | 575,001 | 575,002 | u297046168 | python |
p02778 | s = input()
for _ in range(len(s)):
print(x,end='') | s = input()
for _ in range(len(s)):
print('x',end='') | [
"call.arguments.change"
] | 575,003 | 575,004 | u015993380 | python |
p02778 | print(x*len(input())) | print("x"*len(input())) | [
"call.arguments.change"
] | 575,005 | 575,006 | u440161695 | python |
p02778 | S = 'sardine'
x = 'x' * len(S)
output = x
print(output)
| S = input()
x = 'x' * len(S)
output = x
print(output)
| [] | 575,007 | 575,008 | u017624958 | python |
p02778 | s = input()
a = 'x'
print('a' * len(s)) | s = input()
print('x' * len(s)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,013 | 575,014 | u200228637 | python |
p02778 | s = input()
a = x
print('a' * len(s)) | s = input()
print('x' * len(s)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,015 | 575,014 | u200228637 | python |
p02778 | s = input()
a = x
print('x' * len(s)) | s = input()
print('x' * len(s)) | [
"assignment.remove"
] | 575,016 | 575,014 | u200228637 | python |
p02778 | s = input()
a = 'x'
print('a' * len(s)) | s = input()
print('x' * len(s)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,013 | 575,017 | u200228637 | python |
p02778 | s = input()
a = x
print('a' * len(s)) | s = input()
print('x' * len(s)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,015 | 575,017 | u200228637 | python |
p02778 | s = input()
a = x
print('x' * len(s)) | s = input()
print('x' * len(s)) | [
"assignment.remove"
] | 575,016 | 575,017 | u200228637 | python |
p02778 | S = input()
ans = ''.join(['x' for _ in range(len(S))])
ans | S = input()
ans = ''.join(['x' for _ in range(len(S))])
print(ans) | [
"call.add",
"call.arguments.change"
] | 575,021 | 575,022 | u026402121 | python |
p02778 | S = str(input())
result = []
for i in range(len(S)):
result.append(x)
result = ''.join(result)
print(result) | S = str(input())
result = []
for i in range(len(S)):
result.append('x')
result = ''.join(result)
print(result) | [
"call.arguments.change"
] | 575,029 | 575,030 | u904081717 | python |
p02778 | S = str(input())
print('*'*len(S)) | S = str(input())
print('x'*len(S)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,031 | 575,032 | u461833298 | python |
p02778 | print(''*len(input())) | print('x'*len(input()))
| [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,035 | 575,036 | u170183831 | python |
p02778 | g=str(input())
print("x"*len(s)) | g=str(input())
print("x"*len(g))
| [
"identifier.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,041 | 575,042 | u753092134 | python |
p02778 | S = list(input())
print(x*len(S)) | S = list(input())
print("x" * len(S)) | [
"call.arguments.change"
] | 575,043 | 575,044 | u735975757 | python |
p02778 | S = input()
out = ""
for i in range(S.len()):
out += "x"
print(out) | S = input()
tmp = ""
for i in range(len(S)):
tmp += "x"
print(tmp) | [
"assignment.variable.change",
"identifier.change",
"call.arguments.change",
"control_flow.loop.range.bounds.upper.change",
"io.output.change"
] | 575,045 | 575,046 | u286201019 | python |
p02778 | s = list(input())
size = len(s)
for i in range(size):
s[i] = "x"
print(s[i])
| s = list(input())
size = len(s)
for i in range(size):
s[i] = "x"
print(s[i], end="")
| [
"call.arguments.add"
] | 575,069 | 575,070 | u432385629 | python |
p02778 | N = input()
l = len(N)
print('X' * l) | N = input()
l = len(N)
print('x' * l)
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,083 | 575,084 | u538844871 | python |
p02778 | print(x * len(input())) | print('x' * len(input())) | [
"call.arguments.change"
] | 575,096 | 575,097 | u847033024 | python |
p02778 | s = input()
print("x"**len(s)) | s = input()
print("x"*len(s)) | [
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,117 | 575,119 | u904995051 | python |
p02778 | S = input()
leng = len(S)
ans = ''
for n in range(leng):
ans += '*'
print(ans) | S = input()
leng = len(S)
ans = ''
for n in range(leng):
ans += 'x'
print(ans) | [
"literal.string.change"
] | 575,121 | 575,123 | u065137691 | python |
p02778 | S=input()
a=[]
for i in range(len(S)):
a.append('×')
print(''.join(a)) | S=input()
a=[]
for i in range(len(S)):
a.append('x')
print(''.join(a)) | [
"literal.string.change",
"call.arguments.change"
] | 575,133 | 575,135 | u827261928 | python |
p02778 | S = input()
print("×"*len(S)) | S = input()
print("x"*len(S))
| [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,136 | 575,138 | u656391577 | python |
p02778 | A = input()
B = len(A)
print(x*B) | A = input()
B = len(A)
print("x"*B) | [
"call.arguments.change"
] | 575,140 | 575,141 | u774985302 | python |
p02778 | def main():
s = input()
n = len(s)
ans = ''
for _ in range(n):
ans += "*"
print(ans)
if __name__ == "__main__":
main()
| def main():
s = input()
n = len(s)
ans = ''
for _ in range(n):
ans += "x"
print(ans)
if __name__ == "__main__":
main()
| [
"literal.string.change"
] | 575,146 | 575,147 | u044964932 | python |
p02778 | s = input()
a = int(len(s))
print("x" * s) | s = input()
a = len(s)
print("x" * a) | [
"call.remove",
"call.arguments.change",
"identifier.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,150 | 575,151 | u752522099 | python |
p02778 | s = input()
a = len(s)
print("x" * s) | s = input()
a = len(s)
print("x" * a) | [
"identifier.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,152 | 575,151 | u752522099 | python |
p02778 | S = input()
S_list = list(S)
for i in range(len(S_list)):
S_list[i] = "x"
print(*S_list)
| S = input()
S_list = list(S)
for i in range(len(S_list)):
S_list[i] = "x"
print(*S_list, sep="") | [
"call.arguments.add"
] | 575,153 | 575,154 | u964521959 | python |
p02778 | S = input()
ans = "X" * len(S)
print(ans) | S = input()
ans = "x" * len(S)
print(ans) | [
"literal.string.change",
"literal.string.case.change",
"assignment.value.change",
"expression.operation.binary.change"
] | 575,170 | 575,171 | u923270446 | python |
p02778 | mozi = str(input())
s = str(x)
for i in range(len(mozi)):
s += "x"
print(s) | mozi = str(input())
s = str()
for i in range(len(mozi)):
s += str("x")
print(s) | [
"call.arguments.change",
"call.add"
] | 575,181 | 575,182 | u927807968 | python |
p02778 | input1 = len(input())
print("X"*input1) | input1 = len(input())
print("x"*input1)
| [
"literal.string.change",
"literal.string.case.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,190 | 575,191 | u195355592 | python |
p02778 | from sys import stdin
S = stdin.readline().rstrip()
print(x*len(S)) | from sys import stdin
S = stdin.readline().rstrip()
print('x'*len(S)) | [
"call.arguments.change"
] | 575,202 | 575,203 | u724742135 | python |
p02778 | s = input()
ans = ""
for i in range(len(s)) :
ans += "×"
else:
print(ans) | s = input()
ans = ""
for i in range(len(s)) :
ans += "x"
else:
print(ans) | [
"literal.string.change"
] | 575,206 | 575,207 | u408791346 | python |
p02778 | S = input()
n = len(S)
for i in range(n):
print('x') | S = input()
n = len(S)
for i in range(n):
print('x', end="") | [
"call.arguments.add"
] | 575,208 | 575,209 | u119947188 | python |
p02778 | S = input()
ls = len(S)
ans = ''
for i in range(ls):
ans.append('x')
print(ans) | S = input()
ls = len(S)
ans = ''
for i in range(ls):
ans += 'x'
print(ans) | [
"call.remove",
"call.arguments.change"
] | 575,221 | 575,222 | u697101155 | python |
p02778 | S = input()
ls = len(S)
ans = ''
for i in range(ls):
ans.append(x)
print(ans) | S = input()
ls = len(S)
ans = ''
for i in range(ls):
ans += 'x'
print(ans) | [
"call.arguments.change"
] | 575,223 | 575,222 | u697101155 | python |
p02778 | # -*- coding: utf-8 -*-
s=str(input())
n=len(n)
print('x'*n) | # -*- coding: utf-8 -*-
s=str(input())
n=len(s)
print('x'*n) | [
"assignment.value.change",
"identifier.change",
"call.arguments.change"
] | 575,237 | 575,238 | u212242633 | python |
p02778 | S = input()
print("x"*len(words)) | S = input()
print("x"*len(S)) | [
"identifier.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,246 | 575,247 | u746791385 | python |
p02778 | S=input()
newS='X'*len(S)
print(newS) | S=input()
newS='x'*len(S)
print(newS) | [
"literal.string.change",
"literal.string.case.change",
"assignment.value.change",
"expression.operation.binary.change"
] | 575,254 | 575,255 | u318233626 | python |
p02778 | S = input()
for i in len(S):
print(x, end="") | S = input()
for i in range(len(S)):
print('x', end="") | [
"call.add",
"call.arguments.change",
"control_flow.loop.range.bounds.upper.change"
] | 575,285 | 575,286 | u989089752 | python |
p02778 | c = input()
#print(len(c))
print('×'*len(c)) | c = input()
#print(len(c))
print('x'*len(c)) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,287 | 575,288 | u136079278 | python |
p02778 | s = input()
n = len(s)
X = x*n
print("X") | s = input()
n = len(s)
X = "x" *n
print(X) | [
"call.arguments.change"
] | 575,296 | 575,295 | u745687363 | python |
p02778 | s = input()
n = int(len(s))
X = x*n
print(X) | s = input()
n = len(s)
X = "x" *n
print(X) | [
"call.remove",
"call.arguments.change"
] | 575,297 | 575,295 | u745687363 | python |
p02778 | s = input()
n = len(s)
X = x*n
print(X) | s = input()
n = len(s)
X = "x" *n
print(X) | [] | 575,298 | 575,295 | u745687363 | python |
p02778 | s = input().split()
for c in s:
print("x", end="") | s = input()
for c in s:
print("x", end="") | [
"call.remove"
] | 575,299 | 575,300 | u702914680 | python |
p02778 | print("x" * len(int(input()))) | print("x" * len(input())) | [
"call.remove",
"call.arguments.change"
] | 575,313 | 575,314 | u889914341 | python |
p02778 | a = input()
num = len(a)
print('*'*num) | a = input()
num = len(a)
print('x'*num) | [
"literal.string.change",
"call.arguments.change",
"expression.operation.binary.change",
"io.output.change"
] | 575,317 | 575,318 | u906858931 | python |
p02778 | s=input()
l=len(s)
print(x*l) | s=input()
l=len(s)
print('x'*l) | [
"call.arguments.change"
] | 575,319 | 575,320 | u652569315 | python |
p02778 | def resolve_B():
s = input()
l = len(s)
print("x" * l)
resolve_B | def resolve_B():
s = input()
l = len(s)
print("x" * l)
resolve_B() | [
"call.add"
] | 575,321 | 575,322 | u046961553 | python |
p02778 | s = input()
n = len(s)
print(n)
l = []
r = ' '
for i in range(n):
l.append('x')
print(r.join(l).replace(" ", "")) | s = input()
n = len(s)
l = []
r = ' '
for i in range(n):
l.append('x')
print(r.join(l).replace(" ", "")) | [
"call.remove"
] | 575,364 | 575,365 | u406405116 | python |
p02778 | S = input()
for i in range(len(S)):
print(x,end="") | S = input()
for i in range(len(S)):
print("x",end="") | [
"call.arguments.change"
] | 575,384 | 575,385 | u189479417 | python |
p02778 | S = input()
N = (len(S))
for i in range(N):
S = S[:i-1] + 'x' + S[i:]#i番目の文字をxに変える
S = S[:N-1] + '' + S[N:]#i番目の文字をxに変える
S = S[:N] + 'x' + S[N+1:]#最後の文字用
S = S[:N] + '' + S[N+1:]#i番目の文字をxに変える
print(S) | S = input()
N = (len(S))
for i in range(N+1):
S = S[:i-1] + 'x' + S[i:]#i番目の文字をxに変える
S = S[:N-1] + '' + S[N:]#i番目の文字をxに変える
S = S[:N] + 'x' + S[N+1:]#最後の文字用
S = S[:N] + '' + S[N+1:]#i番目の文字をxに変える
print(S) | [
"control_flow.loop.range.bounds.upper.change",
"expression.operation.binary.add"
] | 575,386 | 575,387 | u432699428 | python |
p02778 | s = str(input())
import re
re.sub(r'.', 'x', s) | s = str(input())
import re
print(re.sub(r'.', 'x', s)) | [
"call.add",
"call.arguments.change"
] | 575,409 | 575,410 | u742036388 | python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.