結果

問題 No.1438 Broken Drawers
ユーザー kohei2019kohei2019
提出日時 2022-05-20 00:43:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 106,624 KB
最終ジャッジ日時 2024-09-19 05:34:31
合計ジャッジ時間 4,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 90 ms
106,112 KB
testcase_07 AC 90 ms
106,368 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 46 ms
61,952 KB
testcase_12 AC 63 ms
77,824 KB
testcase_13 AC 75 ms
87,808 KB
testcase_14 AC 57 ms
72,320 KB
testcase_15 AC 92 ms
102,144 KB
testcase_16 AC 91 ms
101,248 KB
testcase_17 AC 101 ms
105,216 KB
testcase_18 AC 96 ms
105,856 KB
testcase_19 AC 96 ms
106,112 KB
testcase_20 AC 95 ms
105,728 KB
testcase_21 AC 95 ms
105,728 KB
testcase_22 AC 94 ms
106,240 KB
testcase_23 AC 95 ms
106,624 KB
testcase_24 AC 96 ms
106,112 KB
testcase_25 AC 94 ms
106,380 KB
testcase_26 AC 96 ms
106,112 KB
testcase_27 AC 97 ms
106,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsa = list(map(int,input().split()))
used = [False]*(N)
so = [0]*(N)
for i in range(N):
    so[lsa[i]-1] = i

ans = 0
for i in range(N):
    if used[so[i]]:
        continue
    used[so[i]] = True
    if so[i] != 0:
        used[so[i]-1] = True
    ans += 1
print(ans)

0