結果

問題 No.1604 Swap Sort:ONE
ユーザー convexineqconvexineq
提出日時 2021-07-16 21:34:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 64,084 KB
最終ジャッジ日時 2024-07-06 08:32:02
合計ジャッジ時間 2,782 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,752 KB
testcase_01 AC 38 ms
53,636 KB
testcase_02 AC 37 ms
52,412 KB
testcase_03 AC 38 ms
52,528 KB
testcase_04 AC 38 ms
52,508 KB
testcase_05 AC 61 ms
62,256 KB
testcase_06 AC 58 ms
61,492 KB
testcase_07 AC 82 ms
63,528 KB
testcase_08 AC 80 ms
61,868 KB
testcase_09 AC 80 ms
62,900 KB
testcase_10 AC 81 ms
63,840 KB
testcase_11 AC 80 ms
62,780 KB
testcase_12 AC 82 ms
62,500 KB
testcase_13 AC 82 ms
63,544 KB
testcase_14 AC 80 ms
62,208 KB
testcase_15 AC 82 ms
62,524 KB
testcase_16 AC 81 ms
62,616 KB
testcase_17 AC 60 ms
62,324 KB
testcase_18 AC 59 ms
62,736 KB
testcase_19 AC 77 ms
62,088 KB
testcase_20 AC 57 ms
62,764 KB
testcase_21 AC 78 ms
64,084 KB
testcase_22 AC 70 ms
62,680 KB
testcase_23 AC 49 ms
61,312 KB
testcase_24 AC 46 ms
60,484 KB
testcase_25 AC 79 ms
63,352 KB
testcase_26 AC 63 ms
61,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*p, = map(lambda x: int(x)-1,input().split())
pos = [0]*n
for i,pi in enumerate(p):
    pos[pi] = i
ans = 0
for i in range(n):
    for j in range(i):
        ans += pos[i] < pos[j]
print(ans)
0