結果

問題 No.1438 Broken Drawers
ユーザー zer0zer0
提出日時 2021-03-26 21:56:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 53,772 KB
最終ジャッジ日時 2024-05-06 15:26:44
合計ジャッジ時間 6,310 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 270 ms
53,772 KB
testcase_07 AC 214 ms
40,676 KB
testcase_08 AC 26 ms
10,496 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 35 ms
12,160 KB
testcase_12 AC 109 ms
23,700 KB
testcase_13 AC 164 ms
28,360 KB
testcase_14 AC 81 ms
18,364 KB
testcase_15 AC 250 ms
39,360 KB
testcase_16 AC 256 ms
38,928 KB
testcase_17 AC 268 ms
39,512 KB
testcase_18 AC 273 ms
39,912 KB
testcase_19 AC 260 ms
40,044 KB
testcase_20 AC 271 ms
40,168 KB
testcase_21 AC 260 ms
39,792 KB
testcase_22 AC 277 ms
40,400 KB
testcase_23 AC 281 ms
40,544 KB
testcase_24 AC 285 ms
40,540 KB
testcase_25 AC 289 ms
40,544 KB
testcase_26 AC 277 ms
40,420 KB
testcase_27 AC 284 ms
40,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N = int(input())
A = list(map(int, input().split()))
B = [0] * N
for i in range(N):
    B[A[i] - 1] = i + 1

d = defaultdict(int)
ans = []
for i in range(N):
    if not B[i] in d:
        ans.append(i + 1)
        d[B[i] - 1] += 1
print(len(ans))
0