結果

問題 No.1233 割り切れない気持ち
ユーザー mkawa2mkawa2
提出日時 2021-07-26 22:27:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,290 ms / 3,153 ms
コード長 1,021 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,168 KB
最終ジャッジ日時 2024-07-22 13:25:04
合計ジャッジ時間 21,695 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
13,952 KB
testcase_01 AC 72 ms
13,952 KB
testcase_02 AC 219 ms
13,824 KB
testcase_03 AC 484 ms
20,224 KB
testcase_04 AC 412 ms
20,224 KB
testcase_05 AC 249 ms
13,952 KB
testcase_06 AC 278 ms
13,952 KB
testcase_07 AC 736 ms
25,372 KB
testcase_08 AC 789 ms
30,144 KB
testcase_09 AC 927 ms
39,776 KB
testcase_10 AC 949 ms
39,784 KB
testcase_11 AC 651 ms
25,004 KB
testcase_12 AC 1,010 ms
40,688 KB
testcase_13 AC 973 ms
40,696 KB
testcase_14 AC 972 ms
40,784 KB
testcase_15 AC 1,021 ms
40,740 KB
testcase_16 AC 1,045 ms
40,640 KB
testcase_17 AC 214 ms
22,028 KB
testcase_18 AC 1,290 ms
51,168 KB
testcase_19 AC 227 ms
30,900 KB
testcase_20 AC 258 ms
22,028 KB
testcase_21 AC 249 ms
30,304 KB
testcase_22 AC 248 ms
30,304 KB
testcase_23 AC 250 ms
30,180 KB
testcase_24 AC 245 ms
30,308 KB
testcase_25 AC 245 ms
30,304 KB
testcase_26 AC 241 ms
31,204 KB
testcase_27 AC 243 ms
29,408 KB
testcase_28 AC 245 ms
29,544 KB
testcase_29 AC 239 ms
29,464 KB
testcase_30 AC 245 ms
29,536 KB
testcase_31 AC 247 ms
29,572 KB
testcase_32 AC 240 ms
29,536 KB
testcase_33 AC 243 ms
29,560 KB
testcase_34 AC 240 ms
29,540 KB
testcase_35 AC 244 ms
29,536 KB
testcase_36 AC 236 ms
29,536 KB
testcase_37 AC 70 ms
13,952 KB
testcase_38 AC 253 ms
22,032 KB
testcase_39 AC 793 ms
37,604 KB
testcase_40 AC 825 ms
37,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

from functools import lru_cache

mx = 200005
n = II()
aa = LI()

cnt = [0]*mx
for a in aa: cnt[a] += 1
cs = [0]
for c in cnt: cs.append(cs[-1]+c)

@lru_cache(None)
def f(a):
    res = 0
    for i in range(1, mx):
        l, r = i*a, (i+1)*a
        if r >= mx: r = mx-1
        res += (cs[r]-cs[l])*i
        if r == mx-1: break
    return res

s = sum(aa)
ans = s*n
for a in aa: ans -= a*f(a)
print(ans)
0