結果

問題 No.1604 Swap Sort:ONE
ユーザー minimumminimum
提出日時 2021-07-16 21:37:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 63,412 KB
最終ジャッジ日時 2024-07-06 08:34:58
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,200 KB
testcase_01 AC 35 ms
53,324 KB
testcase_02 AC 36 ms
52,756 KB
testcase_03 AC 32 ms
52,956 KB
testcase_04 AC 32 ms
53,168 KB
testcase_05 AC 47 ms
61,168 KB
testcase_06 AC 52 ms
62,244 KB
testcase_07 AC 74 ms
62,644 KB
testcase_08 AC 69 ms
61,560 KB
testcase_09 AC 71 ms
61,960 KB
testcase_10 AC 79 ms
62,932 KB
testcase_11 AC 73 ms
62,992 KB
testcase_12 AC 72 ms
63,080 KB
testcase_13 AC 74 ms
62,056 KB
testcase_14 AC 69 ms
63,412 KB
testcase_15 AC 72 ms
61,984 KB
testcase_16 AC 69 ms
61,884 KB
testcase_17 AC 51 ms
62,632 KB
testcase_18 AC 51 ms
62,080 KB
testcase_19 AC 73 ms
62,900 KB
testcase_20 AC 53 ms
61,592 KB
testcase_21 AC 70 ms
63,076 KB
testcase_22 AC 61 ms
61,912 KB
testcase_23 AC 42 ms
60,080 KB
testcase_24 AC 40 ms
60,584 KB
testcase_25 AC 67 ms
62,924 KB
testcase_26 AC 56 ms
62,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

ans = 0

for i in range(n):
    now = a[i]
    ans += now - i - 1
    a[i] = i + 1
    for j in range(i + 1, n):
        if a[j] < now:
            a[j] += 1

print(ans)
0