結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー mkawa2mkawa2
提出日時 2023-02-28 00:32:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 4,000 ms
コード長 1,194 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 109,684 KB
最終ジャッジ日時 2024-09-15 05:49:52
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,024 KB
testcase_01 AC 54 ms
63,912 KB
testcase_02 AC 56 ms
64,504 KB
testcase_03 AC 70 ms
67,012 KB
testcase_04 AC 65 ms
65,588 KB
testcase_05 AC 71 ms
67,136 KB
testcase_06 AC 64 ms
65,604 KB
testcase_07 AC 68 ms
67,676 KB
testcase_08 AC 60 ms
68,176 KB
testcase_09 AC 60 ms
69,772 KB
testcase_10 AC 61 ms
69,852 KB
testcase_11 AC 62 ms
69,088 KB
testcase_12 AC 60 ms
68,752 KB
testcase_13 AC 106 ms
89,424 KB
testcase_14 AC 94 ms
83,996 KB
testcase_15 AC 126 ms
94,536 KB
testcase_16 AC 125 ms
94,580 KB
testcase_17 AC 113 ms
92,684 KB
testcase_18 AC 123 ms
92,700 KB
testcase_19 AC 115 ms
92,664 KB
testcase_20 AC 171 ms
109,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
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 = (1 << 63)-1
# inf = (1 << 31)-1
md = 10**9+7
# md = 998244353

# a>=b
# b-a%b
# b-(a-b*(a//b))
# b-a+b*(a//b)

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

aa.sort()
ans = l = 0
cnt = [0]*mx
for i, a in enumerate(aa):
    cnt[a] += 1
    ans += l-a*i
    l += a

cs = [0]*(mx+1)
for i in range(mx): cs[i+1] = cs[i]+cnt[i]

for b in range(1, mx):
    if cnt[b] == 0: continue
    cur = -cnt[b]*(cnt[b]+1)//2
    for l in range(b, mx, b):
        r = min(l+b, mx)
        cur += cs[r]-cs[l]
        ans += cnt[b]*cur*l
        cur = 0

print(ans)
0