結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 44 ms
58,624 KB
testcase_03 AC 65 ms
70,528 KB
testcase_04 AC 63 ms
69,632 KB
testcase_05 AC 40 ms
57,600 KB
testcase_06 AC 42 ms
58,112 KB
testcase_07 AC 215 ms
86,400 KB
testcase_08 AC 308 ms
95,716 KB
testcase_09 AC 539 ms
114,944 KB
testcase_10 AC 573 ms
107,776 KB
testcase_11 AC 188 ms
85,760 KB
testcase_12 AC 616 ms
110,240 KB
testcase_13 AC 631 ms
110,080 KB
testcase_14 AC 649 ms
110,196 KB
testcase_15 AC 632 ms
109,952 KB
testcase_16 AC 640 ms
110,336 KB
testcase_17 AC 119 ms
121,728 KB
testcase_18 AC 817 ms
114,900 KB
testcase_19 AC 161 ms
113,276 KB
testcase_20 AC 122 ms
121,728 KB
testcase_21 AC 177 ms
111,360 KB
testcase_22 AC 170 ms
110,848 KB
testcase_23 AC 175 ms
110,720 KB
testcase_24 AC 178 ms
111,232 KB
testcase_25 AC 175 ms
111,488 KB
testcase_26 AC 174 ms
111,188 KB
testcase_27 AC 181 ms
111,872 KB
testcase_28 AC 179 ms
110,880 KB
testcase_29 AC 183 ms
111,232 KB
testcase_30 AC 184 ms
111,488 KB
testcase_31 AC 186 ms
111,488 KB
testcase_32 AC 178 ms
111,488 KB
testcase_33 AC 177 ms
110,856 KB
testcase_34 AC 175 ms
111,484 KB
testcase_35 AC 178 ms
111,056 KB
testcase_36 AC 187 ms
111,940 KB
testcase_37 AC 39 ms
51,712 KB
testcase_38 AC 127 ms
122,136 KB
testcase_39 AC 490 ms
109,268 KB
testcase_40 AC 486 ms
109,184 KB
権限があれば一括ダウンロードができます

ソースコード

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