結果

問題 No.1604 Swap Sort:ONE
ユーザー tonyu0tonyu0
提出日時 2022-09-21 10:46:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 214 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 65,096 KB
最終ジャッジ日時 2024-06-01 17:19:30
合計ジャッジ時間 3,225 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,532 KB
testcase_01 AC 37 ms
52,344 KB
testcase_02 AC 37 ms
52,824 KB
testcase_03 AC 36 ms
52,620 KB
testcase_04 AC 38 ms
52,144 KB
testcase_05 AC 56 ms
62,276 KB
testcase_06 AC 64 ms
63,264 KB
testcase_07 AC 85 ms
63,444 KB
testcase_08 AC 87 ms
65,096 KB
testcase_09 AC 84 ms
64,024 KB
testcase_10 AC 87 ms
64,672 KB
testcase_11 AC 87 ms
62,968 KB
testcase_12 AC 87 ms
64,020 KB
testcase_13 AC 84 ms
64,052 KB
testcase_14 AC 83 ms
64,952 KB
testcase_15 AC 84 ms
63,592 KB
testcase_16 AC 83 ms
63,024 KB
testcase_17 AC 61 ms
63,192 KB
testcase_18 AC 63 ms
62,352 KB
testcase_19 AC 78 ms
63,980 KB
testcase_20 AC 59 ms
63,364 KB
testcase_21 AC 82 ms
63,828 KB
testcase_22 AC 71 ms
63,536 KB
testcase_23 AC 49 ms
61,548 KB
testcase_24 AC 47 ms
60,800 KB
testcase_25 AC 79 ms
63,900 KB
testcase_26 AC 64 ms
63,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(lambda x : int(x) - 1,input().split()))
ans=0
for i in range(n):
    for j in range(i+1,n):
        if a[j]==i:
            ans+=a[i]-i
        if a[j]<a[i]:
            a[j]+=1
print(ans)
0