結果

問題 No.1233 割り切れない気持ち
ユーザー ayaoniayaoni
提出日時 2020-11-22 09:37:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 3,153 ms
コード長 553 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 120,300 KB
最終ジャッジ日時 2024-07-23 16:19:44
合計ジャッジ時間 5,765 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
79,512 KB
testcase_01 AC 58 ms
79,160 KB
testcase_02 AC 63 ms
80,140 KB
testcase_03 AC 68 ms
82,912 KB
testcase_04 AC 68 ms
82,436 KB
testcase_05 AC 63 ms
80,196 KB
testcase_06 AC 64 ms
79,992 KB
testcase_07 AC 93 ms
97,592 KB
testcase_08 AC 99 ms
103,168 KB
testcase_09 AC 121 ms
114,476 KB
testcase_10 AC 125 ms
115,640 KB
testcase_11 AC 82 ms
94,076 KB
testcase_12 AC 125 ms
113,644 KB
testcase_13 AC 132 ms
114,016 KB
testcase_14 AC 127 ms
114,160 KB
testcase_15 AC 129 ms
113,832 KB
testcase_16 AC 125 ms
114,092 KB
testcase_17 AC 95 ms
119,184 KB
testcase_18 AC 126 ms
113,824 KB
testcase_19 AC 96 ms
110,192 KB
testcase_20 AC 97 ms
119,424 KB
testcase_21 AC 101 ms
119,612 KB
testcase_22 AC 99 ms
120,016 KB
testcase_23 AC 100 ms
119,540 KB
testcase_24 AC 99 ms
119,616 KB
testcase_25 AC 100 ms
120,300 KB
testcase_26 AC 100 ms
119,604 KB
testcase_27 AC 101 ms
117,216 KB
testcase_28 AC 100 ms
117,760 KB
testcase_29 AC 99 ms
117,144 KB
testcase_30 AC 98 ms
117,120 KB
testcase_31 AC 99 ms
117,248 KB
testcase_32 AC 100 ms
117,332 KB
testcase_33 AC 101 ms
117,332 KB
testcase_34 AC 101 ms
117,404 KB
testcase_35 AC 102 ms
117,344 KB
testcase_36 AC 100 ms
117,572 KB
testcase_37 AC 57 ms
78,920 KB
testcase_38 AC 96 ms
119,216 KB
testcase_39 AC 116 ms
117,280 KB
testcase_40 AC 121 ms
117,396 KB
権限があれば一括ダウンロードができます

ソースコード

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
    for j in range(1,(2*10**5)//i):
        a += j*(s_count[(j+1)*i-1]-s_count[j*i-1])
    a += (2*10**5)//i*(s_count[-1]-s_count[((2*10**5)//i)*i-1])
    ans -= a*count[i]*i

print(ans)
0