結果

問題 No.1233 割り切れない気持ち
ユーザー rlangevinrlangevin
提出日時 2023-10-30 12:15:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 3,153 ms
コード長 442 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 111,752 KB
最終ジャッジ日時 2024-09-25 17:12:57
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,280 KB
testcase_01 AC 39 ms
53,496 KB
testcase_02 AC 40 ms
53,012 KB
testcase_03 AC 49 ms
62,904 KB
testcase_04 AC 47 ms
61,232 KB
testcase_05 AC 39 ms
52,332 KB
testcase_06 AC 39 ms
52,856 KB
testcase_07 AC 93 ms
81,100 KB
testcase_08 AC 108 ms
91,416 KB
testcase_09 AC 148 ms
103,800 KB
testcase_10 AC 149 ms
106,860 KB
testcase_11 AC 84 ms
81,176 KB
testcase_12 AC 166 ms
111,708 KB
testcase_13 AC 169 ms
111,224 KB
testcase_14 AC 163 ms
111,424 KB
testcase_15 AC 160 ms
111,752 KB
testcase_16 AC 171 ms
111,596 KB
testcase_17 AC 79 ms
98,016 KB
testcase_18 AC 164 ms
111,164 KB
testcase_19 AC 95 ms
109,864 KB
testcase_20 AC 79 ms
98,412 KB
testcase_21 AC 84 ms
101,272 KB
testcase_22 AC 83 ms
101,176 KB
testcase_23 AC 83 ms
101,740 KB
testcase_24 AC 84 ms
101,248 KB
testcase_25 AC 84 ms
101,880 KB
testcase_26 AC 84 ms
100,848 KB
testcase_27 AC 101 ms
110,284 KB
testcase_28 AC 98 ms
109,040 KB
testcase_29 AC 94 ms
108,408 KB
testcase_30 AC 94 ms
108,416 KB
testcase_31 AC 94 ms
107,984 KB
testcase_32 AC 93 ms
108,020 KB
testcase_33 AC 94 ms
108,832 KB
testcase_34 AC 94 ms
108,492 KB
testcase_35 AC 94 ms
107,924 KB
testcase_36 AC 93 ms
108,088 KB
testcase_37 AC 39 ms
53,116 KB
testcase_38 AC 92 ms
104,852 KB
testcase_39 AC 138 ms
109,920 KB
testcase_40 AC 141 ms
109,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
M = max(A)
D = [0] * (M + 1)
for a in A:
    D[a] += 1

Dc = [0] * (M + 2)
for i in range(M + 1):
    Dc[i + 1] = Dc[i] + D[i]


ans = N * sum(A)
memo = [-1] * (M + 1)
for a in A:
    if memo[a] != -1:
        ans -= memo[a]
        continue
    v = 0
    for i in range(a, M + 1, a):
        v += (Dc[min(i + a, M + 1)] - Dc[i]) * (i // a)
    ans -= a * v
    memo[a] = a * v

print(ans)
0