結果

問題 No.1233 割り切れない気持ち
ユーザー cmycmy
提出日時 2022-08-18 02:55:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 3,153 ms
コード長 458 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 122,136 KB
最終ジャッジ日時 2024-10-05 10:38:35
合計ジャッジ時間 13,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

n = int(input())
*a, = map(int, input().split())
a.sort()

s = [0]
for ai in a:
    s.append(s[-1]+ai)

ans = 0
cache = {1: 0}
for i, ai in enumerate(a):
    ans += s[bisect_left(a, ai)]

    if ai not in cache:
        j = i
        cache[ai] = s[-1] - s[j]
        for aj in range(ai, a[-1]+1, ai):
            k = bisect_left(a, aj+ai)
            cache[ai] -= aj * (k-j)
            j = k
    ans += cache[ai]

print(ans)
0