結果

問題 No.1233 割り切れない気持ち
ユーザー rlangevinrlangevin
提出日時 2023-10-30 12:12:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 109,632 KB
最終ジャッジ日時 2024-09-25 17:12:51
合計ジャッジ時間 16,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,472 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 53 ms
61,440 KB
testcase_04 AC 47 ms
61,312 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 83 ms
78,848 KB
testcase_08 AC 100 ms
88,960 KB
testcase_09 AC 141 ms
102,272 KB
testcase_10 AC 146 ms
105,344 KB
testcase_11 AC 76 ms
76,416 KB
testcase_12 AC 163 ms
109,312 KB
testcase_13 AC 165 ms
109,268 KB
testcase_14 AC 159 ms
109,632 KB
testcase_15 AC 166 ms
109,312 KB
testcase_16 AC 164 ms
109,312 KB
testcase_17 AC 82 ms
98,944 KB
testcase_18 AC 158 ms
109,280 KB
testcase_19 AC 105 ms
109,440 KB
testcase_20 AC 82 ms
98,560 KB
testcase_21 AC 92 ms
101,888 KB
testcase_22 AC 92 ms
101,888 KB
testcase_23 AC 92 ms
102,144 KB
testcase_24 AC 92 ms
102,016 KB
testcase_25 AC 91 ms
101,504 KB
testcase_26 AC 92 ms
101,632 KB
testcase_27 AC 1,114 ms
109,184 KB
testcase_28 AC 1,069 ms
109,128 KB
testcase_29 AC 712 ms
108,672 KB
testcase_30 AC 665 ms
108,800 KB
testcase_31 AC 615 ms
108,672 KB
testcase_32 AC 583 ms
108,672 KB
testcase_33 AC 561 ms
109,056 KB
testcase_34 AC 528 ms
108,544 KB
testcase_35 AC 506 ms
108,788 KB
testcase_36 AC 482 ms
108,800 KB
testcase_37 AC 38 ms
52,480 KB
testcase_38 TLE -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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)
for a in A:
    v = 0
    for i in range(a, M + 1, a):
        v += (Dc[min(i + a, M + 1)] - Dc[i]) * (i // a)
    ans -= a * v

print(ans)
0