結果

問題 No.1604 Swap Sort:ONE
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-07-16 21:32:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-07-06 08:29:20
合計ジャッジ時間 9,021 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,876 KB
testcase_01 AC 40 ms
52,712 KB
testcase_02 AC 38 ms
52,560 KB
testcase_03 AC 38 ms
52,196 KB
testcase_04 AC 38 ms
52,284 KB
testcase_05 AC 48 ms
60,872 KB
testcase_06 AC 166 ms
75,660 KB
testcase_07 AC 496 ms
76,008 KB
testcase_08 AC 493 ms
76,072 KB
testcase_09 AC 494 ms
75,864 KB
testcase_10 AC 495 ms
75,872 KB
testcase_11 AC 494 ms
75,744 KB
testcase_12 AC 495 ms
75,868 KB
testcase_13 AC 485 ms
76,156 KB
testcase_14 AC 494 ms
76,132 KB
testcase_15 AC 493 ms
75,720 KB
testcase_16 AC 496 ms
75,796 KB
testcase_17 AC 198 ms
75,816 KB
testcase_18 AC 202 ms
75,932 KB
testcase_19 AC 449 ms
75,640 KB
testcase_20 AC 181 ms
75,692 KB
testcase_21 AC 445 ms
75,764 KB
testcase_22 AC 328 ms
75,812 KB
testcase_23 AC 87 ms
72,704 KB
testcase_24 AC 58 ms
65,936 KB
testcase_25 AC 450 ms
75,668 KB
testcase_26 AC 247 ms
75,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = list(map(int, input().split()))
inds = [p.index(i) for i in range(1, n + 1)]
ans = 0
while True:
    if p == sorted(p): break
    for i in range(1, n):
        a, b = inds[i - 1], inds[i]
        if a > b: inds[i - 1], inds[i] = inds[i], inds[i - 1]; p[a], p[b] = p[b], p[a]; ans += 1
print(ans)
0