結果

問題 No.2289 順列ソート
ユーザー イルカイルカ
提出日時 2024-06-11 17:00:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 60,048 KB
最終ジャッジ日時 2024-06-11 17:00:11
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,196 KB
testcase_01 AC 33 ms
52,204 KB
testcase_02 AC 34 ms
52,688 KB
testcase_03 AC 40 ms
58,452 KB
testcase_04 AC 38 ms
58,760 KB
testcase_05 AC 37 ms
59,436 KB
testcase_06 AC 37 ms
58,064 KB
testcase_07 AC 36 ms
58,484 KB
testcase_08 AC 36 ms
59,152 KB
testcase_09 AC 37 ms
58,892 KB
testcase_10 AC 37 ms
58,584 KB
testcase_11 AC 36 ms
58,844 KB
testcase_12 AC 42 ms
59,356 KB
testcase_13 AC 36 ms
58,688 KB
testcase_14 AC 37 ms
58,872 KB
testcase_15 AC 36 ms
58,456 KB
testcase_16 AC 37 ms
58,896 KB
testcase_17 AC 36 ms
58,752 KB
testcase_18 AC 37 ms
58,920 KB
testcase_19 AC 36 ms
52,692 KB
testcase_20 AC 37 ms
59,860 KB
testcase_21 AC 40 ms
60,048 KB
testcase_22 AC 33 ms
52,752 KB
testcase_23 AC 37 ms
58,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,*V=map(int,open(0).read().split())
a=set()
r=range(N)
for i in r:
	s=i
	a.add(min([s:=V[s]-1 for _ in r]))
print(N-len(a))
0