結果

問題 No.1233 割り切れない気持ち
ユーザー H3PO4H3PO4
提出日時 2022-07-01 08:32:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 477 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 172,928 KB
最終ジャッジ日時 2024-11-25 10:26:05
合計ジャッジ時間 20,442 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
163,328 KB
testcase_01 AC 39 ms
57,344 KB
testcase_02 AC 40 ms
57,216 KB
testcase_03 AC 49 ms
172,928 KB
testcase_04 AC 49 ms
66,304 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 76 ms
80,384 KB
testcase_08 AC 94 ms
91,776 KB
testcase_09 AC 122 ms
104,320 KB
testcase_10 AC 128 ms
107,520 KB
testcase_11 AC 70 ms
78,592 KB
testcase_12 AC 141 ms
112,512 KB
testcase_13 AC 146 ms
111,616 KB
testcase_14 AC 140 ms
112,128 KB
testcase_15 AC 139 ms
112,512 KB
testcase_16 AC 141 ms
112,512 KB
testcase_17 AC 88 ms
102,016 KB
testcase_18 AC 134 ms
111,872 KB
testcase_19 AC 112 ms
112,316 KB
testcase_20 AC 87 ms
102,016 KB
testcase_21 AC 93 ms
103,392 KB
testcase_22 AC 93 ms
103,212 KB
testcase_23 AC 94 ms
103,296 KB
testcase_24 AC 94 ms
103,872 KB
testcase_25 AC 93 ms
103,680 KB
testcase_26 AC 93 ms
103,296 KB
testcase_27 AC 671 ms
111,872 KB
testcase_28 AC 624 ms
112,108 KB
testcase_29 AC 308 ms
111,360 KB
testcase_30 AC 297 ms
111,872 KB
testcase_31 AC 281 ms
112,100 KB
testcase_32 AC 272 ms
111,744 KB
testcase_33 AC 261 ms
111,600 KB
testcase_34 AC 252 ms
111,612 KB
testcase_35 AC 243 ms
111,616 KB
testcase_36 AC 236 ms
111,660 KB
testcase_37 AC 38 ms
51,840 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

N = int(input())
A = tuple(map(int, input().split()))
MAX = max(A)
A_freq = [0] * (MAX + 1)
for a in A:
    A_freq[a] += 1
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]

ans = N * sum(A)
for a in A:
    div_sum = 0
    for i, x in enumerate(range(a - 1, MAX, a), 1):
        div_sum += i * (A_freq_acc[min(x + a, MAX)] - A_freq_acc[x])
    ans -= a * div_sum
print(ans)
0