結果

問題 No.1438 Broken Drawers
ユーザー 37zigen37zigen
提出日時 2021-03-26 21:42:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,156 KB
最終ジャッジ日時 2024-11-28 22:26:08
合計ジャッジ時間 7,273 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 258 ms
30,156 KB
testcase_07 AC 224 ms
29,900 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 41 ms
11,392 KB
testcase_12 AC 116 ms
17,864 KB
testcase_13 AC 174 ms
23,300 KB
testcase_14 AC 90 ms
15,632 KB
testcase_15 AC 267 ms
28,820 KB
testcase_16 AC 260 ms
28,000 KB
testcase_17 AC 282 ms
29,004 KB
testcase_18 AC 287 ms
29,532 KB
testcase_19 AC 283 ms
29,840 KB
testcase_20 AC 274 ms
29,516 KB
testcase_21 AC 273 ms
29,120 KB
testcase_22 AC 284 ms
30,064 KB
testcase_23 AC 291 ms
30,032 KB
testcase_24 AC 280 ms
30,152 KB
testcase_25 AC 288 ms
29,892 KB
testcase_26 AC 286 ms
29,900 KB
testcase_27 AC 285 ms
30,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

index = [None] * N

for i in range(N):
    A[i] -= 1

for i in range(N):
    index[A[i]] = i

ok = [True] * N

ans = 0
for i in range(N):
    if not ok[index[i]]:
        continue
    ok[index[i]] = False
    if index[i] > 0:
        ok[index[i] - 1] = False
    ans += 1

print(ans)
0