結果

問題 No.1438 Broken Drawers
ユーザー toyuzukotoyuzuko
提出日時 2021-04-20 17:21:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 266 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,516 KB
最終ジャッジ日時 2024-07-04 05:23:06
合計ジャッジ時間 3,433 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,752 KB
testcase_01 AC 38 ms
52,764 KB
testcase_02 AC 39 ms
52,484 KB
testcase_03 AC 38 ms
52,956 KB
testcase_04 AC 39 ms
53,032 KB
testcase_05 AC 39 ms
52,176 KB
testcase_06 AC 97 ms
121,516 KB
testcase_07 AC 93 ms
113,220 KB
testcase_08 AC 39 ms
52,192 KB
testcase_09 AC 38 ms
53,680 KB
testcase_10 AC 37 ms
52,508 KB
testcase_11 AC 47 ms
64,232 KB
testcase_12 AC 63 ms
81,488 KB
testcase_13 AC 77 ms
94,664 KB
testcase_14 AC 58 ms
75,060 KB
testcase_15 AC 97 ms
110,856 KB
testcase_16 AC 94 ms
109,828 KB
testcase_17 AC 99 ms
114,356 KB
testcase_18 AC 100 ms
114,856 KB
testcase_19 AC 100 ms
114,796 KB
testcase_20 AC 100 ms
115,128 KB
testcase_21 AC 99 ms
115,052 KB
testcase_22 AC 101 ms
115,388 KB
testcase_23 AC 100 ms
114,952 KB
testcase_24 AC 103 ms
115,224 KB
testcase_25 AC 102 ms
115,748 KB
testcase_26 AC 100 ms
115,264 KB
testcase_27 AC 101 ms
116,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

pos = [0] * (N + 1)

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

res = []
used = [0] * (N + 1)

for i in range(1, N + 1):
    if not used[pos[i]]:
        res.append(i)
        used[pos[i] - 1] = 1

print(len(res))
0