結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 289 ms
53,956 KB
testcase_07 AC 250 ms
40,684 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 42 ms
12,288 KB
testcase_12 AC 135 ms
23,572 KB
testcase_13 AC 208 ms
28,364 KB
testcase_14 AC 95 ms
18,492 KB
testcase_15 AC 313 ms
39,272 KB
testcase_16 AC 300 ms
38,896 KB
testcase_17 AC 313 ms
39,572 KB
testcase_18 AC 322 ms
39,912 KB
testcase_19 AC 335 ms
40,168 KB
testcase_20 AC 334 ms
40,208 KB
testcase_21 AC 339 ms
39,732 KB
testcase_22 AC 332 ms
40,320 KB
testcase_23 AC 347 ms
40,604 KB
testcase_24 AC 343 ms
40,536 KB
testcase_25 AC 337 ms
40,672 KB
testcase_26 AC 335 ms
40,576 KB
testcase_27 AC 335 ms
40,692 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