結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
79,524 KB
testcase_01 AC 58 ms
79,860 KB
testcase_02 AC 70 ms
81,648 KB
testcase_03 AC 80 ms
81,368 KB
testcase_04 AC 79 ms
82,336 KB
testcase_05 AC 70 ms
80,488 KB
testcase_06 AC 73 ms
80,260 KB
testcase_07 AC 112 ms
97,296 KB
testcase_08 AC 117 ms
103,268 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 100 ms
94,280 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 96 ms
118,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 95 ms
118,924 KB
testcase_21 AC 102 ms
120,128 KB
testcase_22 AC 102 ms
119,572 KB
testcase_23 AC 101 ms
119,568 KB
testcase_24 AC 102 ms
119,636 KB
testcase_25 AC 101 ms
119,984 KB
testcase_26 AC 101 ms
119,696 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 57 ms
78,904 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
    for j in range(2*i-1,2*10**5+1,i):
        a += j//i*(s_count[j]-s_count[j-i])
    ans -= a*count[i]*i

print(ans)
0