Submission #2152669


Source Code Expand

import math
n=int(input())
a=[int(i) for i in input().split()]
b=[1 if i + 1 ==j else 0 for i,j in enumerate(a)]

n=0
x=0
for i in b:
  if i==1:
    n+=1
  else:
    if n!=0:
      x+=math.ceil(n/2)
    n=0

print(x+math.ceil(n/2))

Submission Info

Submission Time
Task D - Derangement
User suwakotaro
Language Python (3.4.3)
Score 400
Code Size 246 Byte
Status AC
Exec Time 79 ms
Memory 13940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 4
AC × 15
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 0_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt, 1_010.txt, 1_011.txt, 1_012.txt, 1_013.txt, 1_014.txt
Case Name Status Exec Time Memory
0_000.txt AC 17 ms 3060 KB
0_001.txt AC 17 ms 2936 KB
0_002.txt AC 17 ms 3064 KB
0_003.txt AC 17 ms 3060 KB
1_004.txt AC 17 ms 3060 KB
1_005.txt AC 65 ms 13812 KB
1_006.txt AC 79 ms 13812 KB
1_007.txt AC 63 ms 13812 KB
1_008.txt AC 67 ms 13940 KB
1_009.txt AC 75 ms 13812 KB
1_010.txt AC 63 ms 13812 KB
1_011.txt AC 64 ms 13812 KB
1_012.txt AC 65 ms 13812 KB
1_013.txt AC 71 ms 13812 KB
1_014.txt AC 64 ms 13812 KB