結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー ニックネームニックネーム
提出日時 2022-08-19 22:50:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,834 ms / 4,000 ms
コード長 313 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,988 KB
最終ジャッジ日時 2024-12-16 08:26:59
合計ジャッジ時間 12,530 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 36 ms
10,624 KB
testcase_04 AC 35 ms
10,624 KB
testcase_05 AC 37 ms
10,624 KB
testcase_06 AC 35 ms
10,624 KB
testcase_07 AC 36 ms
10,752 KB
testcase_08 AC 61 ms
11,008 KB
testcase_09 AC 59 ms
11,008 KB
testcase_10 AC 63 ms
11,136 KB
testcase_11 AC 77 ms
11,264 KB
testcase_12 AC 77 ms
11,136 KB
testcase_13 AC 850 ms
18,652 KB
testcase_14 AC 666 ms
16,444 KB
testcase_15 AC 1,394 ms
21,352 KB
testcase_16 AC 1,481 ms
21,812 KB
testcase_17 AC 1,110 ms
20,164 KB
testcase_18 AC 1,160 ms
20,744 KB
testcase_19 AC 1,029 ms
20,872 KB
testcase_20 AC 2,834 ms
30,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
from bisect import bisect_left
n = int(input())
a = sorted(map(int, input().split()))
b = list(accumulate(a[::-1]))
m = max(a)
ans = 0
for i, v in enumerate(a[:-1]):
    ans += 2*v*(n-i-1)-b[n-i-2]
    for j in range(2, m//v+1):
        ans += v*(n-bisect_left(a, v*j))
print(ans)
0