結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー | TS_KAs |
提出日時 | 2019-11-23 00:43:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 320 bytes |
コンパイル時間 | 415 ms |
コンパイル使用メモリ | 81,800 KB |
実行使用メモリ | 92,312 KB |
最終ジャッジ日時 | 2024-10-11 06:38:27 |
合計ジャッジ時間 | 2,117 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,840 KB |
testcase_01 | AC | 38 ms
51,968 KB |
testcase_02 | AC | 41 ms
51,840 KB |
testcase_03 | AC | 37 ms
51,712 KB |
testcase_04 | AC | 36 ms
51,968 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 70 ms
90,880 KB |
testcase_14 | AC | 68 ms
90,624 KB |
testcase_15 | AC | 71 ms
91,648 KB |
ソースコード
N = int(input()) B = list(map(int, input().split())) L = [[] for _ in range(max(B)+1)] for i in range(N): L[B[i]].append(i) ans = 0 for i in range(2, len(L)): if len(L[i]) > 0: for j in L[i]: for _ in range(i-1): tmp = L[0].pop() ans += abs(tmp - j) print(ans)