結果

問題 No.1438 Broken Drawers
ユーザー 37zigen37zigen
提出日時 2021-03-26 21:42:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,284 KB
最終ジャッジ日時 2024-05-06 15:03:24
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 257 ms
30,280 KB
testcase_07 AC 220 ms
30,280 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 38 ms
11,648 KB
testcase_12 AC 112 ms
18,248 KB
testcase_13 AC 175 ms
23,488 KB
testcase_14 AC 87 ms
15,964 KB
testcase_15 AC 263 ms
29,204 KB
testcase_16 AC 245 ms
28,128 KB
testcase_17 AC 279 ms
29,004 KB
testcase_18 AC 287 ms
29,872 KB
testcase_19 AC 294 ms
29,844 KB
testcase_20 AC 279 ms
29,772 KB
testcase_21 AC 285 ms
29,248 KB
testcase_22 AC 285 ms
30,128 KB
testcase_23 AC 287 ms
30,284 KB
testcase_24 AC 288 ms
30,284 KB
testcase_25 AC 284 ms
30,280 KB
testcase_26 AC 295 ms
30,152 KB
testcase_27 AC 293 ms
30,284 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