結果

問題 No.1604 Swap Sort:ONE
ユーザー yudai1102jpyudai1102jp
提出日時 2021-07-16 22:17:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 926 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-06 09:39:49
合計ジャッジ時間 15,263 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 24 ms
10,496 KB
testcase_04 AC 23 ms
10,624 KB
testcase_05 AC 633 ms
11,136 KB
testcase_06 AC 926 ms
11,008 KB
testcase_07 AC 787 ms
11,008 KB
testcase_08 AC 759 ms
10,880 KB
testcase_09 AC 824 ms
10,880 KB
testcase_10 AC 768 ms
11,008 KB
testcase_11 AC 756 ms
11,008 KB
testcase_12 AC 841 ms
10,880 KB
testcase_13 AC 759 ms
11,136 KB
testcase_14 AC 817 ms
11,008 KB
testcase_15 AC 791 ms
11,008 KB
testcase_16 AC 875 ms
11,008 KB
testcase_17 AC 314 ms
10,752 KB
testcase_18 AC 340 ms
10,752 KB
testcase_19 AC 786 ms
10,880 KB
testcase_20 AC 272 ms
11,008 KB
testcase_21 AC 730 ms
11,008 KB
testcase_22 AC 554 ms
10,880 KB
testcase_23 AC 103 ms
10,752 KB
testcase_24 AC 50 ms
10,624 KB
testcase_25 AC 782 ms
11,136 KB
testcase_26 AC 451 ms
10,752 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[i] > P[j]:
            P[j] += 1
    ans += P[i]-i-1
print(ans)
0