結果

問題 No.1233 割り切れない気持ち
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-10-08 15:31:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 3,153 ms
コード長 535 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 116,312 KB
最終ジャッジ日時 2024-06-22 18:37:59
合計ジャッジ時間 6,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
57,188 KB
testcase_01 AC 46 ms
55,360 KB
testcase_02 AC 46 ms
56,716 KB
testcase_03 AC 57 ms
65,652 KB
testcase_04 AC 56 ms
65,852 KB
testcase_05 AC 48 ms
56,340 KB
testcase_06 AC 47 ms
56,932 KB
testcase_07 AC 83 ms
85,600 KB
testcase_08 AC 102 ms
95,348 KB
testcase_09 AC 126 ms
102,332 KB
testcase_10 AC 130 ms
104,972 KB
testcase_11 AC 80 ms
83,708 KB
testcase_12 AC 142 ms
105,088 KB
testcase_13 AC 142 ms
105,276 KB
testcase_14 AC 140 ms
104,972 KB
testcase_15 AC 139 ms
105,292 KB
testcase_16 AC 141 ms
105,176 KB
testcase_17 AC 85 ms
100,936 KB
testcase_18 AC 137 ms
104,880 KB
testcase_19 AC 146 ms
116,312 KB
testcase_20 AC 85 ms
101,468 KB
testcase_21 AC 101 ms
104,716 KB
testcase_22 AC 101 ms
104,992 KB
testcase_23 AC 101 ms
104,648 KB
testcase_24 AC 101 ms
104,708 KB
testcase_25 AC 101 ms
105,028 KB
testcase_26 AC 102 ms
104,596 KB
testcase_27 AC 137 ms
108,048 KB
testcase_28 AC 139 ms
107,972 KB
testcase_29 AC 137 ms
108,164 KB
testcase_30 AC 132 ms
108,052 KB
testcase_31 AC 132 ms
108,736 KB
testcase_32 AC 133 ms
108,008 KB
testcase_33 AC 133 ms
107,984 KB
testcase_34 AC 134 ms
108,068 KB
testcase_35 AC 136 ms
108,720 KB
testcase_36 AC 134 ms
108,300 KB
testcase_37 AC 46 ms
55,732 KB
testcase_38 AC 129 ms
108,964 KB
testcase_39 AC 139 ms
104,576 KB
testcase_40 AC 135 ms
104,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))

S = sum(A)
M = max(A)
Y = [0]*(M+1)
for a in A:
    Y[a] += 1

B = list(accumulate([0]+Y))

T = [0]*(M+1)
for i in range(1,M+1):
    
    n = 1
    while n*i<=M:
        T[i] += n*(B[min((n+1)*i,M+1)] - B[n*i])
        n += 1
ans = 0
for a in A:
    ans += a*T[a]
print(N*S - ans)
0