結果

問題 No.1604 Swap Sort:ONE
ユーザー kohei2019kohei2019
提出日時 2022-06-23 00:28:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 64,364 KB
最終ジャッジ日時 2024-11-06 11:20:48
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,076 KB
testcase_01 AC 38 ms
52,952 KB
testcase_02 AC 38 ms
52,196 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 39 ms
52,400 KB
testcase_05 AC 62 ms
60,760 KB
testcase_06 AC 58 ms
61,692 KB
testcase_07 AC 84 ms
63,740 KB
testcase_08 AC 82 ms
61,944 KB
testcase_09 AC 84 ms
62,812 KB
testcase_10 AC 83 ms
62,464 KB
testcase_11 AC 83 ms
62,004 KB
testcase_12 AC 83 ms
62,980 KB
testcase_13 AC 88 ms
64,364 KB
testcase_14 AC 85 ms
63,296 KB
testcase_15 AC 82 ms
63,208 KB
testcase_16 AC 87 ms
61,816 KB
testcase_17 AC 61 ms
61,756 KB
testcase_18 AC 63 ms
61,516 KB
testcase_19 AC 79 ms
62,412 KB
testcase_20 AC 59 ms
62,572 KB
testcase_21 AC 79 ms
63,380 KB
testcase_22 AC 75 ms
62,264 KB
testcase_23 AC 48 ms
59,752 KB
testcase_24 AC 46 ms
60,808 KB
testcase_25 AC 78 ms
62,064 KB
testcase_26 AC 66 ms
62,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsp = list(map(int,input().split()))
cnt = 0
for i in range(N):
    v = i+1
    cnt += lsp[i]-v
    for j in range(i+1,N):
        if lsp[j] < lsp[i]:
            lsp[j] += 1
    lsp[i] = v
print(cnt)
0