Datasets:

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
p02759
a = int(input()) if a//2 == 0: print(a//2) else: print(a//2 + 1)
a = int(input()) if a%2 == 0: print(a//2) else: print(a//2 +1)
[ "expression.operator.arithmetic.change", "control_flow.branch.if.condition.change" ]
545,247
545,248
u123907230
python
p02759
n = int(intput()) if n % 2 == 0: print(n // 2) else: print(n // 2 + 1)
n = int(input()) if n%2 == 0: print(n//2) else: print(n//2+1)
[ "assignment.value.change", "identifier.change", "call.function.change", "call.arguments.change" ]
545,257
545,258
u200228637
python
p02759
n = int(input()) if n%2 == 0: print(n/2) else: print(n/2+1)
n = int(input()) if n%2 == 0: print(n//2) else: print(n//2+1)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,314
545,313
u578093902
python
p02759
n = int(input()) if n%2 == 0: print(n//2) else: print(n//2)
n = int(input()) if n%2 ==0: print(n//2) else: print(n//2 + 1)
[ "expression.operation.binary.add" ]
545,315
545,316
u044138790
python
p02759
n = int(input()) if n%2 ==0: print(n//2) else: print(n//2)
n = int(input()) if n%2 ==0: print(n//2) else: print(n//2 + 1)
[ "expression.operation.binary.add" ]
545,318
545,316
u044138790
python
p02759
n = int(input()) if n%2 ==0: print(n/2) else: print(n//2)
n = int(input()) if n%2 ==0: print(n//2) else: print(n//2 + 1)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,319
545,316
u044138790
python
p02759
n = int(input()) if n/2 == 0: print(n/2) else: print(n//2)
n = int(input()) if n%2 ==0: print(n//2) else: print(n//2 + 1)
[ "expression.operator.arithmetic.change", "control_flow.branch.if.condition.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,320
545,316
u044138790
python
p02759
num = int(input()) if num % 2 == 0: print(num) else: print(num // 2 + 1)
num = int(input()) if num % 2 == 0: print(num // 2) else: print(num // 2 + 1)
[ "expression.operation.binary.add" ]
545,330
545,331
u514118270
python
p02759
x = int(input()) if(x%2 == 0): print(x/2) else: print(x/2 +1)
x = int(input()) if(x%2 == 0): print(x//2) else: print(x//2 +1)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,332
545,333
u489170903
python
p02759
x = input() if(x%2 == 0): print(x/2) else: print(x/2 +1)
x = int(input()) if(x%2 == 0): print(x//2) else: print(x//2 +1)
[ "call.add", "call.arguments.change", "expression.operator.arithmetic.change", "expression.operation.binary.change", "io.output.change" ]
545,334
545,333
u489170903
python
p02759
n = int(input()) if n % 2 == 0: print(int(n/2)) else: print(int((n-1)/2))
n = int(input()) if n % 2 == 0: print(int(n/2)) else: print(int((n+1)/2))
[ "misc.opposites", "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,339
545,340
u658325491
python
p02759
import sys input = sys.stdin.readline N = int(input()) print(N//2 if N%2==0 else (N+1//2))
import sys input = sys.stdin.readline N = int(input()) print(N//2 if N%2==0 else (N+1)//2)
[ "call.arguments.change" ]
545,364
545,365
u656391577
python
p02759
n = int(input()) if n % 2 == 1: print(int((n-1) / 2)) exit(0) print(int(n/2))
n = int(input()) if n % 2 == 1: print(int((n+1) / 2)) exit(0) print(int(n/2))
[ "misc.opposites", "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,366
545,367
u019113646
python
p02759
n = int(input()) print(int(n/2))
from math import ceil n = int(input()) print(ceil(n/2))
[ "identifier.change", "call.function.change", "call.arguments.change", "io.output.change" ]
545,378
545,379
u665038048
python
p02759
n = int(input()) ans = ((n+1)//2)
n = int(input()) ans = ((n+1)//2) print(ans)
[ "call.add" ]
545,380
545,381
u510015767
python
p02759
import math s = input() s = int(s) s = math.ceil(s) print(s)
import math s = input() s = int(s) s = s/2 s = math.ceil(s) print(s)
[ "assignment.add" ]
545,386
545,387
u493373637
python
p02759
import math print(math.ceil(int(input())))
import math print(math.ceil(int(input()) / 2))
[ "expression.operation.binary.add" ]
545,394
545,395
u610326327
python
p02759
N=int(input()) ans=ceil(N/2) print(ans)
import math N=int(input()) ans=math.ceil(N/2) print(ans)
[]
545,404
545,405
u301319173
python
p02759
N = int(input()) if N%2 ==0: ans = N%2 print(ans) else : ans = N%2 + 0.5 print(int(ans))
N = int(input()) if N%2 ==0: ans = N/2 print(int(ans)) else : ans = N/2 + 0.5 print(int(ans))
[ "expression.operator.arithmetic.change", "assignment.value.change", "expression.operation.binary.change", "call.add", "call.arguments.change" ]
545,410
545,411
u288430479
python
p02759
n = int(input()) if n%2 == 0: print(n/2) else: print(int(2*n+1)/2)
n = int(input()) if n%2 == 0: print(int(n/2)) else: print(int((n+1)/2))
[ "call.arguments.add", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,414
545,415
u962356464
python
p02759
n = input() if n % 2 == 0: print(n // 2) else: print(n // 2 + 1)
n = int(input()) if n % 2 == 0: print(n // 2) else: print(n // 2 + 1)
[ "call.add", "call.arguments.change" ]
545,425
545,426
u518581917
python
p02759
import sys n = int(sys.stdin.readline()) rem = n%2 print(n/2 + rem)
import sys n = int(sys.stdin.readline()) rem = n%2 print(n//2 + rem)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,435
545,434
u977771109
python
p02759
import sys n = int(sys.stdin.readline()) rem = n%2 return n/2 + 1
import sys n = int(sys.stdin.readline()) rem = n%2 print(n//2 + rem)
[ "function.return_value.change", "call.arguments.change", "expression.operator.arithmetic.change", "expression.operation.binary.change", "identifier.replace.add", "literal.replace.remove" ]
545,436
545,434
u977771109
python
p02759
n = int(input()) print(n/2+n%2)
n = int(input()) print(int(n/2)+int(n%2))
[ "call.arguments.add", "call.arguments.change", "call.add" ]
545,456
545,457
u161868822
python
p02759
n = int(input()) ans = 0 if n % 2 == 0: ans = n / 2 else: ans = n / 2 + 1 print(ans)
n = int(input()) ans = 0 if n % 2 == 0: ans = int(n / 2) else: ans = int(n / 2) + 1 print(ans)
[ "call.add", "call.arguments.change" ]
545,460
545,461
u580372796
python
p02759
N = input() print(round((N/2)+0.01))
N = int(input()) print(round((N/2)+0.01))
[ "call.add", "call.arguments.change" ]
545,470
545,471
u049194092
python
p02759
import math n = input() n = math.ceil(n / 2) print(n)
import math n = int(input()) n = math.ceil(n / 2) print(n)
[ "call.add", "call.arguments.change" ]
545,478
545,479
u780346073
python
p02759
import math n = input() n = math.ceil(n / 2) print(n)
import math n = int(input()) n = math.ceil(n / 2) print(n)
[ "call.add", "call.arguments.change" ]
545,478
545,481
u780346073
python
p02759
n = int(input()) ans = n // 2 if n % 2: print(ans) else: print(ans + 1)
n = int(input()) ans = n // 2 if n % 2 == 0: print(ans) else: print(ans + 1)
[ "control_flow.branch.if.condition.change" ]
545,492
545,493
u214936751
python
p02759
n = int(input()) ans = n / 2 if n % 2: print(ans) else: print(ans + 1)
n = int(input()) ans = n // 2 if n % 2 == 0: print(ans) else: print(ans + 1)
[ "expression.operator.arithmetic.change", "assignment.value.change", "expression.operation.binary.change", "control_flow.branch.if.condition.change" ]
545,494
545,493
u214936751
python
p02759
x = input() if (x % 2 == 0): y = x // 2 else: y = x//2 + 1 print(y)
x = int(input()) if (x % 2 == 0): y = x // 2 else: y = x//2 + 1 print(y)
[ "call.add", "call.arguments.change" ]
545,503
545,504
u096051143
python
p02759
N=int(input()) from math import ceil print (ceil(N//2))
N=int(input()) from math import ceil print (ceil(N/2))
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,505
545,506
u258808501
python
p02759
n=int(input()) print(ceil(n/2))
from math import ceil, floor n = int(input()) print(ceil(n/2))
[]
545,509
545,510
u378991640
python
p02759
N = input() mod = N % 2 if mod == 0: x = N // 2 else: x = N // 2 + 1 print(x)
N = input() N = int(N) mod = N % 2 if mod == 0: x = N // 2 else: x = N // 2 + 1 print(x)
[ "assignment.add" ]
545,511
545,512
u573234244
python
p02759
n = int(input()) ans = n // 4 if n % 4 == 0 else n // 4 + 1 print(ans)
n = int(input()) ans = n // 2 if n % 2 == 0 else n // 2 + 1 print(ans)
[ "literal.number.integer.change", "assignment.value.change", "expression.operation.binary.change" ]
545,517
545,518
u897328029
python
p02759
import math n=input() print(math.ceil(n/2))
import math n=int(input()) print(math.ceil(n/2))
[ "call.add", "call.arguments.change" ]
545,526
545,527
u359933779
python
p02759
import math n=105 print(math.ceil(n/2))
import math n=int(input()) print(math.ceil(n/2))
[ "assignment.value.change", "identifier.replace.add", "literal.replace.remove", "call.arguments.add" ]
545,528
545,527
u359933779
python
p02759
import math n=input() print(math.ceil(n))
import math n=int(input()) print(math.ceil(n/2))
[ "call.add", "call.arguments.change" ]
545,529
545,527
u359933779
python
p02759
import math N = input() print(math.ceil(N/2))
import math N = float(input()) print(math.ceil(N/2))
[ "call.add", "call.arguments.change" ]
545,541
545,542
u216136179
python
p02759
# from fractions import gcd # mod = 10 ** 9 + 7 # N = int(input()) # a = list(map(int,input().split())) # a,b,c = map(int,input().split()) # ans = [0] * N # math.ceilで切り上げ # dp = [[0] * 4 for i in range(3)] #2次元配列初期化 # dp = [[[0] * 2 for i in range(3)] for j in range(5)] # (ord('A'))でASCII出力 Aは65 import math import sta...
# from fractions import gcd # mod = 10 ** 9 + 7 # N = int(input()) # a = list(map(int,input().split())) # a,b,c = map(int,input().split()) # ans = [0] * N # math.ceilで切り上げ # dp = [[0] * 4 for i in range(3)] #2次元配列初期化 # dp = [[[0] * 2 for i in range(3)] for j in range(5)] # (ord('A'))でASCII出力 Aは65 import math import sta...
[ "expression.operation.binary.add" ]
545,543
545,544
u143903328
python
p02759
print(int(int(input())+1/2))
print(int((int(input())+1)/2))
[ "call.arguments.change" ]
545,545
545,546
u716660050
python
p02759
int(int(input())/2+0.5)
print(int(int(input())/2+0.5))
[ "call.add", "call.arguments.change" ]
545,556
545,557
u497326082
python
p02759
a=int(input().split()) ans=a//2 if a%2 == 1: ans=ans+1 print(ans)
a=int(input()) ans=a//2 if a%2 == 1: ans=ans+1 print(ans)
[ "call.remove" ]
545,563
545,564
u103915901
python
p02759
print(int((int(input()+1))/2))
print( int( (int(input()) + 1 )/2 ) )
[ "call.arguments.change" ]
545,611
545,612
u556069480
python
p02759
page = int(input()) paper = page // 2 print(paper)
page = int(input()) paper = -(-page // 2) print(paper)
[]
545,619
545,620
u207400417
python
p02759
page = int(input()) paper = page / 2 print(paper)
page = int(input()) paper = -(-page // 2) print(paper)
[ "expression.operator.arithmetic.change", "assignment.value.change", "expression.operation.binary.change" ]
545,621
545,620
u207400417
python
p02759
N=input() if N%2==0 : print(N/2) else : print(N//2+1)
N=int(input()) if N%2==0 : print(N//2) else : print(N//2+1)
[ "call.add", "call.arguments.change", "expression.operator.arithmetic.change", "expression.operation.binary.change", "io.output.change" ]
545,631
545,630
u405080602
python
p02759
import math page = int(input("num: ")) print(math.ceil(page/2))
import math page = int(input()) print(math.ceil(page/2))
[]
545,634
545,635
u753542444
python
p02759
page = int(input()) print(round(page/2))
import math page = int(input()) print(math.ceil(page/2))
[ "call.arguments.change", "io.output.change" ]
545,636
545,635
u753542444
python
p02759
from math import ceil N = int(inpput()) print(ceil(N/2))
from math import ceil N = int(input()) print(ceil(N/2))
[ "assignment.value.change", "identifier.change", "call.function.change", "call.arguments.change" ]
545,641
545,642
u579324544
python
p02759
N = int(input()) print(N // 2 + (0 if N % 2 == 0 else 0))
N = int(input()) print(N // 2 + (0 if N % 2 == 0 else 1))
[ "literal.number.integer.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,657
545,658
u824734140
python
p02759
N = int(input()) print(N // 2 + (N % 2 if 0 else 1))
N = int(input()) print(N // 2 + (0 if N % 2 == 0 else 1))
[ "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,659
545,658
u824734140
python
p02759
n=int(input()) print((n+2-1)/2)
n=int(input()) print(int((n+2-1)/2))
[ "call.arguments.add", "call.arguments.change" ]
545,663
545,664
u731362892
python
p02759
print(int(input()+1)//2)
print((int(input())+1)//2)
[ "call.arguments.change" ]
545,667
545,668
u021217230
python
p02759
a = input() res = a//2 if a%2 >0: res += 1 print(res)
a = int(input()) res = a // 2 if a % 2 > 0: res += 1 print(res)
[ "call.add", "call.arguments.change" ]
545,669
545,670
u052298809
python
p02759
a = input() res = a // 2 if a % 2 > 0: res += 1 print(res)
a = int(input()) res = a // 2 if a % 2 > 0: res += 1 print(res)
[ "call.add", "call.arguments.change" ]
545,671
545,670
u052298809
python
p02759
n = int(input()) ans = 0 if n % 2 == 1: ans = n // 2 + 1 else: ans == n // 2 print(ans)
n = int(input()) ans = 0 if n % 2 == 1: ans = n // 2 + 1 else: ans = n // 2 print(ans)
[ "expression.operation.compare.replace.remove", "assignment.replace.add", "misc.typo" ]
545,674
545,675
u812587837
python
p02759
n = int(input()) a = n // 2 + 1 print(a)
n = int(input()) a = n//2 + n%2 print(a)
[ "assignment.value.change", "identifier.replace.add", "literal.replace.remove", "expression.operation.binary.change" ]
545,678
545,679
u574380888
python
p02759
n = int(input()) a = n // 2 print(a)
n = int(input()) a = n//2 + n%2 print(a)
[ "assignment.change" ]
545,680
545,679
u574380888
python
p02759
def resolve(): N = int(input()) print(N//2 if N%2==0 else N//2+1)
def resolve(): N = int(input()) print(N//2 if N%2==0 else N//2+1) resolve()
[ "call.add" ]
545,691
545,692
u631872601
python
p02759
a=int(input()) print((a+1)/2)
a=int(input()) print((a+1)//2)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,699
545,700
u987476436
python
p02759
N = input() if N % 2 == 1: n = N + 1 else: n = N print(int(n / 2))
N = int(input()) if N % 2 == 1: n = N + 1 else: n = N print(int(n / 2))
[ "call.add", "call.arguments.change" ]
545,709
545,710
u373723818
python
p02759
N = 3 if N % 2 == 1: n = N + 1 else: n = N print(int(n / 2))
N = int(input()) if N % 2 == 1: n = N + 1 else: n = N print(int(n / 2))
[ "assignment.value.change", "identifier.replace.add", "literal.replace.remove", "call.arguments.add" ]
545,711
545,710
u373723818
python
p02759
N = input() if N % 2 == 1: n = N + 1 else: n = N print(n / 2)
N = int(input()) if N % 2 == 1: n = N + 1 else: n = N print(int(n / 2))
[ "call.add", "call.arguments.change" ]
545,712
545,710
u373723818
python
p02759
n = int(input()) if n % 2 != 0: print(n//2 + 1) else: prnit(n//2)
n = int(input()) if n % 2 != 0: print(n//2 + 1) else: print(n//2)
[ "identifier.change", "call.function.change" ]
545,731
545,732
u328131364
python
p02759
n = input() if (n % 2) == 1: print((n // 2) + 1) else: print(n // 2)
n = int(input()) if (n % 2) == 1: print((n // 2) + 1) else: print(n // 2)
[ "call.add", "call.arguments.change" ]
545,737
545,738
u261082314
python
p02759
n = input() if n % 2 == 1: print((n // 2) + 1) else: print(n // 2)
n = int(input()) if (n % 2) == 1: print((n // 2) + 1) else: print(n // 2)
[ "call.add", "call.arguments.change", "control_flow.branch.if.condition.change" ]
545,739
545,738
u261082314
python
p02759
n = int(input()) if n%2 == 0: print(n/2) elif n%2 == 1: print(n/2+1)
n = int(input()) if n%2 == 0: print(n//2) elif n%2 == 1: print(n//2+1)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,753
545,754
u606858659
python
p02759
N = input() N = int(N) num_paper = N / 2 if (N % 2) > 0: num_paper += 1 else: pass print(num_paper)
N = input() N = int(N) num_paper = int(N / 2) if (N % 2) > 0: num_paper += 1 else: pass print(num_paper)
[ "call.add", "call.arguments.change" ]
545,757
545,758
u676359467
python
p02759
n=int(input()) a=-(-n//2) print(n)
n = int(input()) a=int(-(-n//2)) print(a)
[ "call.add", "call.arguments.change", "identifier.change", "io.output.change" ]
545,761
545,762
u403547519
python
p02759
N = int(input()) if N%2 ==0: print(N%2) if N%2 ==1: N = N//2+1 print(N)
N = int(input()) if N%2 ==0: print(N//2) if N%2 ==1: N = N//2+1 print(N)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,765
545,766
u054081189
python
p02759
N = int(input().split()) print(N//2) if N%2==0 else print(N//2 +1)
N = int(input()) print(N//2) if N%2==0 else print(N//2 +1)
[ "call.remove" ]
545,772
545,773
u779728630
python
p02759
N = int(input()) print(int((N-N%2)/2))
N = int(input()) print(int((N-N%2)/2+ N%2))
[ "expression.operation.binary.add" ]
545,797
545,798
u850087201
python
p02759
N = int(input()) N = N / 2 + N % 2 print(N)
N = int(input()) N = int(N / 2 + N % 2) print(N)
[ "call.add", "call.arguments.change" ]
545,821
545,822
u850335688
python
p02759
N=int(input()) print(round(N/2))
import math N=int(input()) print(math.ceil(N/2))
[ "call.arguments.change", "io.output.change" ]
545,823
545,824
u382407432
python
p02759
n=int(input()) if n%2!=0: s=(n-1)//2 else: s=n//2 print(s)
n=int(input()) if n%2!=0: s=(n+1)//2 else: s=n//2 print(s)
[ "misc.opposites", "expression.operator.arithmetic.change", "assignment.value.change", "expression.operation.binary.change" ]
545,837
545,838
u063073794
python
p02759
import math print(int(math.ceil(int(input()))))
import math print(int(math.ceil(int(input())/2)))
[ "expression.operation.binary.add" ]
545,867
545,868
u342502598
python
p02759
N=int(input()) if N%2==1: print(N/2+1) else: print(N/2)
N=int(input()) if N%2==1: print(int(N/2)+1) else: print(int(N/2))
[ "call.arguments.add", "call.arguments.change", "call.add" ]
545,878
545,877
u314837274
python
p02759
n = input() print(n // 2 + (n % 2))
n = int(input()) print(n // 2 + (n % 2))
[ "call.add", "call.arguments.change" ]
545,879
545,880
u000540018
python
p02759
N = input() if N%2 == 1: print(int(N/2)+1) else: print(N/2)
N = int(input()) if N % 2 == 1: print((N//2) + 1) else: print(N//2)
[ "call.add", "call.arguments.change", "expression.operator.arithmetic.change", "expression.operation.binary.change", "io.output.change" ]
545,885
545,884
u901060001
python
p02759
from math import ceil n = int(input()) print(round(n/2))
from math import ceil n = int(input()) print(ceil(n/2))
[ "identifier.change", "call.function.near.change", "call.arguments.change", "io.output.change" ]
545,900
545,901
u624075921
python
p02759
import math N = input() n = int(N) math.ceil(n/2)
import math N = input() n = int(N) print(math.ceil(n/2))
[ "call.add", "call.arguments.change" ]
545,902
545,903
u519922200
python
p02759
import math N = input() n = int(N) math.floor(n/2)
import math N = input() n = int(N) print(math.ceil(n/2))
[ "call.add", "misc.opposites", "identifier.change", "call.arguments.change" ]
545,904
545,903
u519922200
python
p02759
N = int(input()) if n%2==0: print(N//2) else: print(N//2+1)
N = int(input()) if N%2==0: print(N//2) else: print(N//2+1)
[ "identifier.change", "control_flow.branch.if.condition.change" ]
545,925
545,926
u594862874
python
p02759
N = int(input()) A = N%2 B = int((N-A)/2) print(B)
N = int(input()) A = N%2 B = int((N+A)/2) print(B)
[ "misc.opposites", "expression.operator.arithmetic.change", "assignment.value.change", "call.arguments.change", "expression.operation.binary.change" ]
545,929
545,930
u723503495
python
p02759
n=int(input()) if n/2==0: print(n/2) else: print((n+1)/2)
n=int(input()) if n/2==0: print(n//2) else: print((n+1)//2)
[ "expression.operator.arithmetic.change", "call.arguments.change", "expression.operation.binary.change", "io.output.change" ]
545,935
545,936
u903179665
python
p02759
n = int(input()) re = (n + 1) / 2 print(re)
n = int(input()) re = (n + 1) // 2 print(re)
[ "expression.operator.arithmetic.change", "assignment.value.change", "expression.operation.binary.change" ]
545,948
545,949
u735315224
python
p02759
import sys import math for line in sys.stdin.readline(): n = float(line.rstrip()) ans = math.ceil(n / 2) print(ans, end="") break
import sys import math for line in sys.stdin.readlines(): n = float(line) ans = math.ceil(n / 2) print(ans, end="") break
[ "identifier.change", "call.remove" ]
545,954
545,955
u364283234
python
p02759
import sys import math for line in sys.stdin.readline(): n = float(line.rstrip()) ans = math.ceil(n / 2) print(ans, end="") break
import sys import math for line in sys.stdin.readlines(): n = float(line) ans = math.ceil(n / 2) print(ans, end="") break
[ "identifier.change", "call.remove" ]
545,956
545,955
u364283234
python
p02759
import sys import math for line in sys.stdin.readline(): g = float(line.rstrip()) ans = math.ceil(n/2) print(ans,end="") break
import sys import math for line in sys.stdin.readlines(): n = float(line) ans = math.ceil(n / 2) print(ans, end="") break
[ "identifier.change", "assignment.variable.change", "call.remove" ]
545,957
545,955
u364283234
python
p02759
import math print(math.ceil(int(input()/2)))
import math print(math.ceil(int(input())/2))
[ "call.arguments.change" ]
545,959
545,960
u336408262
python
p02759
import math print(math.ceil(int(input())))
import math print(math.ceil(int(input())/2))
[ "expression.operation.binary.add" ]
545,961
545,960
u336408262
python
p02759
import math n = int(input()) print(math.floor(n+1)/2)
import math n = int(input()) print(math.floor((n+1)/2))
[ "call.arguments.change" ]
545,972
545,973
u173329233
python
p02759
N=input() if N%2==0: print(int(N/2)) else : print(int(N/2)+1)
N=int(input()) if N%2==0: print(int(N/2)) else : print(int(N/2)+1)
[ "call.add", "call.arguments.change" ]
545,982
545,983
u333731247
python
p02759
n = input() if n % 2 == 0: print(n/2) else: print(n//2 + 1)
n = int(input()) if n % 2 == 0: print(int(n/2)) else: print(n//2 + 1)
[ "call.add", "call.arguments.change" ]
545,991
545,990
u885530128
python
p02759
a = int(input()) b = int(a / 4) if (a % 4 !=0): b+=1 print(b)
a = int(input()) b = int(a / 2) if (a % 2 !=0): b+=1 print(b)
[ "literal.number.integer.change", "assignment.value.change", "call.arguments.change", "expression.operation.binary.change", "control_flow.branch.if.condition.change" ]
545,994
545,995
u776871252
python
p02759
-((-int(input()))//2)
print(-((-int(input()))//2))
[ "call.add", "call.arguments.change" ]
546,004
546,005
u842170774
python
p02759
import math N=int(input()) a=N//2 print(math.ceil(a))
import math N=int(input()) a=N/2 print(math.ceil(a))
[ "expression.operator.arithmetic.change", "assignment.value.change", "expression.operation.binary.change" ]
546,012
546,013
u355154595
python
p02759
import numpy as np N=int(input()) #a = list(map(int, input().split())) m = N%2 if (m == 0): print(N/2) else: print(N/2+1) #for x in range(0,N,1):
import numpy as np N=int(input()) #a = list(map(int, input().split())) m = N%2 if (m == 0): print(int(N/2)) else: print(int(N/2+1)) #for x in range(0,N,1):
[ "call.arguments.add", "call.arguments.change" ]
546,018
546,019
u927105328
python
p02759
N=int(input()) print(N/2+N%2)
N=int(input()) print(int(N/2)+N%2)
[ "call.arguments.add", "call.arguments.change" ]
546,022
546,023
u057362336
python