結果

問題 No.1604 Swap Sort:ONE
ユーザー KudeKude
提出日時 2021-07-16 21:28:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 76,048 KB
最終ジャッジ日時 2024-07-06 08:18:39
合計ジャッジ時間 3,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 33 ms
51,328 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 31 ms
52,224 KB
testcase_04 AC 31 ms
52,096 KB
testcase_05 AC 81 ms
75,924 KB
testcase_06 AC 86 ms
75,624 KB
testcase_07 AC 138 ms
75,840 KB
testcase_08 AC 136 ms
75,984 KB
testcase_09 AC 133 ms
75,392 KB
testcase_10 AC 131 ms
76,048 KB
testcase_11 AC 128 ms
75,916 KB
testcase_12 AC 130 ms
75,936 KB
testcase_13 AC 134 ms
75,776 KB
testcase_14 AC 128 ms
75,520 KB
testcase_15 AC 136 ms
75,776 KB
testcase_16 AC 127 ms
75,648 KB
testcase_17 AC 79 ms
76,020 KB
testcase_18 AC 79 ms
75,520 KB
testcase_19 AC 121 ms
75,648 KB
testcase_20 AC 78 ms
75,392 KB
testcase_21 AC 128 ms
75,756 KB
testcase_22 AC 103 ms
75,904 KB
testcase_23 AC 56 ms
73,728 KB
testcase_24 AC 47 ms
65,664 KB
testcase_25 AC 123 ms
75,904 KB
testcase_26 AC 89 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = [0] * n
for i, x in enumerate(map(int, input().split())):
    p[x - 1] = i
ans = sum(p[j] > p[i] for i in range(n) for j in range(i))
print(ans)
0