結果

問題 No.1438 Broken Drawers
ユーザー flippergoflippergo
提出日時 2024-12-31 09:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 109,436 KB
最終ジャッジ日時 2024-12-31 09:48:02
合計ジャッジ時間 4,351 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,584 KB
testcase_01 AC 34 ms
51,880 KB
testcase_02 AC 38 ms
52,696 KB
testcase_03 AC 35 ms
52,072 KB
testcase_04 AC 35 ms
52,336 KB
testcase_05 AC 36 ms
52,816 KB
testcase_06 AC 85 ms
108,200 KB
testcase_07 AC 83 ms
107,656 KB
testcase_08 AC 36 ms
52,196 KB
testcase_09 AC 37 ms
53,656 KB
testcase_10 AC 36 ms
52,156 KB
testcase_11 AC 44 ms
62,692 KB
testcase_12 AC 58 ms
79,072 KB
testcase_13 AC 71 ms
90,508 KB
testcase_14 AC 54 ms
73,140 KB
testcase_15 AC 86 ms
105,096 KB
testcase_16 AC 85 ms
102,624 KB
testcase_17 AC 89 ms
108,208 KB
testcase_18 AC 88 ms
107,648 KB
testcase_19 AC 87 ms
108,016 KB
testcase_20 AC 90 ms
107,732 KB
testcase_21 AC 89 ms
107,700 KB
testcase_22 AC 91 ms
107,576 KB
testcase_23 AC 92 ms
109,436 KB
testcase_24 AC 92 ms
108,656 KB
testcase_25 AC 90 ms
108,032 KB
testcase_26 AC 92 ms
108,724 KB
testcase_27 AC 89 ms
109,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [0]+list(map(int,input().split()))
indA = [0]*(N+1)
flagA = [0]*(N+1)
for i in range(1,N+1):
    indA[A[i]] = i
cnt = 0
for k in range(1,N+1):
    ind = indA[k]
    if flagA[ind]==0:
        cnt += 1
        flagA[ind] = 1
        if ind>1:
            flagA[ind-1] = 1
print(cnt)
0