結果

問題 No.2289 順列ソート
ユーザー dangodango
提出日時 2023-06-14 16:03:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 59,584 KB
最終ジャッジ日時 2024-06-23 00:32:27
合計ジャッジ時間 2,246 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,412 KB
testcase_01 AC 36 ms
53,572 KB
testcase_02 AC 34 ms
53,568 KB
testcase_03 AC 37 ms
58,128 KB
testcase_04 AC 36 ms
58,464 KB
testcase_05 AC 38 ms
57,920 KB
testcase_06 AC 36 ms
58,596 KB
testcase_07 AC 39 ms
58,176 KB
testcase_08 AC 42 ms
58,128 KB
testcase_09 AC 38 ms
59,168 KB
testcase_10 AC 40 ms
57,732 KB
testcase_11 AC 43 ms
58,192 KB
testcase_12 AC 38 ms
58,800 KB
testcase_13 AC 38 ms
58,288 KB
testcase_14 AC 40 ms
59,584 KB
testcase_15 AC 41 ms
58,352 KB
testcase_16 AC 39 ms
58,620 KB
testcase_17 AC 38 ms
59,044 KB
testcase_18 AC 39 ms
59,372 KB
testcase_19 AC 36 ms
52,644 KB
testcase_20 AC 37 ms
59,268 KB
testcase_21 AC 36 ms
52,540 KB
testcase_22 AC 35 ms
52,032 KB
testcase_23 AC 41 ms
58,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
ans = 0
for i in range(N):
	for j in range(i + 1, N):
		if P[j] == i + 1:
			P[i], P[j] = P[j], P[i]
			ans += 1
print(ans)
0