結果

問題 No.1233 割り切れない気持ち
ユーザー H3PO4H3PO4
提出日時 2022-07-01 14:19:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 3,153 ms
コード長 564 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 128,624 KB
最終ジャッジ日時 2024-11-25 18:13:39
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 43 ms
53,504 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 51 ms
61,952 KB
testcase_04 AC 50 ms
61,696 KB
testcase_05 AC 42 ms
53,376 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 98 ms
86,144 KB
testcase_08 AC 118 ms
92,800 KB
testcase_09 AC 159 ms
107,904 KB
testcase_10 AC 157 ms
109,696 KB
testcase_11 AC 96 ms
84,992 KB
testcase_12 AC 171 ms
112,384 KB
testcase_13 AC 178 ms
112,512 KB
testcase_14 AC 174 ms
112,768 KB
testcase_15 AC 174 ms
112,640 KB
testcase_16 AC 170 ms
112,640 KB
testcase_17 AC 72 ms
84,480 KB
testcase_18 AC 179 ms
128,624 KB
testcase_19 AC 82 ms
90,112 KB
testcase_20 AC 74 ms
84,480 KB
testcase_21 AC 77 ms
85,376 KB
testcase_22 AC 77 ms
85,504 KB
testcase_23 AC 79 ms
85,888 KB
testcase_24 AC 75 ms
85,248 KB
testcase_25 AC 75 ms
85,504 KB
testcase_26 AC 76 ms
85,888 KB
testcase_27 AC 87 ms
91,392 KB
testcase_28 AC 86 ms
91,520 KB
testcase_29 AC 86 ms
91,008 KB
testcase_30 AC 85 ms
91,136 KB
testcase_31 AC 86 ms
91,008 KB
testcase_32 AC 86 ms
90,752 KB
testcase_33 AC 85 ms
91,008 KB
testcase_34 AC 86 ms
91,008 KB
testcase_35 AC 85 ms
90,752 KB
testcase_36 AC 85 ms
91,136 KB
testcase_37 AC 42 ms
53,376 KB
testcase_38 AC 82 ms
89,472 KB
testcase_39 AC 145 ms
108,032 KB
testcase_40 AC 143 ms
107,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import Counter

input = sys.stdin.buffer.readline

N = int(input())
A = Counter(map(int, input().split()))
MAX = max(A)
A_freq = [0] * (MAX + 1)
for k, v in A.items():
    A_freq[k] += v
A_freq_acc = [0] * (MAX + 1)
for i in range(1, MAX + 1):
    A_freq_acc[i] = A_freq_acc[i - 1] + A_freq[i]


def div_sum(a):
    res = 0
    for i, x in enumerate(range(a - 1, MAX, a), 1):
        res += i * (A_freq_acc[min(x + a, MAX)] - A_freq_acc[x])
    return res


ans = 0
for k, v in A.items():
    ans += k * v * (N - div_sum(k))
print(ans)
0