結果

問題 No.1233 割り切れない気持ち
ユーザー ayaoniayaoni
提出日時 2020-11-22 09:24:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 555 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 120,320 KB
最終ジャッジ日時 2024-07-23 16:19:28
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
78,848 KB
testcase_01 AC 59 ms
78,720 KB
testcase_02 AC 70 ms
79,744 KB
testcase_03 AC 80 ms
81,024 KB
testcase_04 AC 76 ms
81,792 KB
testcase_05 AC 68 ms
79,360 KB
testcase_06 AC 71 ms
79,488 KB
testcase_07 AC 110 ms
97,388 KB
testcase_08 AC 117 ms
103,040 KB
testcase_09 WA -
testcase_10 AC 144 ms
115,944 KB
testcase_11 AC 102 ms
94,080 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 99 ms
118,688 KB
testcase_18 WA -
testcase_19 AC 100 ms
110,328 KB
testcase_20 AC 101 ms
119,288 KB
testcase_21 AC 104 ms
119,424 KB
testcase_22 AC 102 ms
119,616 KB
testcase_23 AC 100 ms
119,744 KB
testcase_24 AC 99 ms
120,304 KB
testcase_25 AC 100 ms
119,680 KB
testcase_26 AC 101 ms
120,320 KB
testcase_27 AC 102 ms
117,248 KB
testcase_28 AC 102 ms
117,572 KB
testcase_29 WA -
testcase_30 AC 101 ms
117,248 KB
testcase_31 AC 101 ms
117,504 KB
testcase_32 AC 101 ms
117,068 KB
testcase_33 AC 99 ms
117,248 KB
testcase_34 AC 101 ms
117,248 KB
testcase_35 AC 98 ms
117,248 KB
testcase_36 AC 99 ms
117,504 KB
testcase_37 AC 57 ms
78,464 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import accumulate
def I(): return int(sys.stdin.readline().rstrip())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))


N = I()
A = LI()
count = [0]*(2*10**5+1)
for a in A:
    count[a] += 1
s_count = list(accumulate(count))

ans = N*sum(A)
for i in range(1,2*10**5+1):
    if count[i] == 0:
        continue
    a = 0
    j = 1
    for j in range(2*i-1,2*10**5+1,i):
        a += j//i*(s_count[j]-s_count[j-i])
    a += 2*10**5//i*(s_count[-1]-s_count[i*(2*10**5//i)-1])
    ans -= a*count[i]*i

print(ans)
0