結果

問題 No.1233 割り切れない気持ち
ユーザー H3PO4H3PO4
提出日時 2022-07-01 08:29:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 436 bytes
コンパイル時間 426 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 194,944 KB
最終ジャッジ日時 2024-11-25 10:21:59
合計ジャッジ時間 32,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
68,480 KB
testcase_01 AC 50 ms
174,336 KB
testcase_02 AC 55 ms
175,104 KB
testcase_03 AC 68 ms
71,296 KB
testcase_04 AC 60 ms
69,760 KB
testcase_05 AC 57 ms
174,464 KB
testcase_06 AC 57 ms
68,608 KB
testcase_07 AC 89 ms
194,944 KB
testcase_08 AC 105 ms
98,176 KB
testcase_09 AC 129 ms
105,984 KB
testcase_10 AC 134 ms
109,952 KB
testcase_11 AC 81 ms
80,116 KB
testcase_12 AC 141 ms
112,348 KB
testcase_13 AC 147 ms
112,316 KB
testcase_14 AC 142 ms
112,000 KB
testcase_15 AC 141 ms
112,256 KB
testcase_16 AC 145 ms
112,540 KB
testcase_17 TLE -
testcase_18 AC 131 ms
112,028 KB
testcase_19 AC 117 ms
115,240 KB
testcase_20 TLE -
testcase_21 AC 693 ms
112,556 KB
testcase_22 AC 593 ms
112,384 KB
testcase_23 AC 531 ms
112,384 KB
testcase_24 AC 457 ms
112,480 KB
testcase_25 AC 416 ms
112,624 KB
testcase_26 AC 390 ms
112,440 KB
testcase_27 AC 370 ms
113,360 KB
testcase_28 AC 616 ms
113,152 KB
testcase_29 AC 321 ms
112,896 KB
testcase_30 AC 302 ms
113,152 KB
testcase_31 AC 292 ms
112,896 KB
testcase_32 AC 278 ms
113,000 KB
testcase_33 AC 269 ms
112,920 KB
testcase_34 AC 260 ms
113,152 KB
testcase_35 AC 255 ms
113,408 KB
testcase_36 AC 244 ms
112,872 KB
testcase_37 AC 47 ms
62,388 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))
MAX = 2 * 10 ** 5
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