結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,560 KB
testcase_01 AC 32 ms
52,684 KB
testcase_02 AC 33 ms
52,548 KB
testcase_03 AC 37 ms
52,816 KB
testcase_04 AC 37 ms
52,744 KB
testcase_05 AC 60 ms
62,192 KB
testcase_06 AC 58 ms
60,948 KB
testcase_07 AC 79 ms
62,276 KB
testcase_08 AC 74 ms
62,224 KB
testcase_09 AC 74 ms
63,168 KB
testcase_10 AC 73 ms
61,384 KB
testcase_11 AC 73 ms
61,516 KB
testcase_12 AC 75 ms
61,456 KB
testcase_13 AC 74 ms
61,584 KB
testcase_14 AC 72 ms
62,388 KB
testcase_15 AC 74 ms
62,024 KB
testcase_16 AC 79 ms
61,568 KB
testcase_17 AC 59 ms
61,272 KB
testcase_18 AC 60 ms
62,552 KB
testcase_19 AC 71 ms
62,128 KB
testcase_20 AC 52 ms
62,464 KB
testcase_21 AC 72 ms
62,616 KB
testcase_22 AC 63 ms
62,912 KB
testcase_23 AC 46 ms
60,332 KB
testcase_24 AC 44 ms
59,796 KB
testcase_25 AC 72 ms
61,332 KB
testcase_26 AC 58 ms
62,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = list(map(int, input().split()))
q = [0] * n
for i in range(n):
    q[p[i] - 1] = i
ans = 0
for i in range(n):
    for j in range(i + 1, n):
        if q[i] > q[j]:
            ans += 1
print(ans)
0