結果
問題 | No.2046 Ans Mod? Mod Ans! |
ユーザー | tktk_snsn |
提出日時 | 2022-08-19 22:48:22 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 886 ms / 4,000 ms |
コード長 | 417 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 107,616 KB |
最終ジャッジ日時 | 2024-12-16 08:27:28 |
合計ジャッジ時間 | 7,216 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
import bisect U = 2 * 10 ** 5 + 10 N = int(input()) A = list(map(int, input().split())) A.sort() ans = 0 for i in range(N): tot = 0 L = i + 1 for d in range(1, U): if A[i] * d > U: break R = bisect.bisect_left(A, A[i] * (d + 1)) tot += (R - L) * d L = R ans += tot * A[i] acc = 0 for i, a in enumerate(A): ans -= a * i - acc acc += a print(ans)