結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー first_vilfirst_vil
提出日時 2022-08-19 22:19:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,796 KB
実行使用メモリ 109,720 KB
最終ジャッジ日時 2024-05-09 17:24:59
合計ジャッジ時間 2,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
64,380 KB
testcase_01 AC 46 ms
63,228 KB
testcase_02 AC 48 ms
63,092 KB
testcase_03 AC 61 ms
64,568 KB
testcase_04 AC 56 ms
64,928 KB
testcase_05 AC 59 ms
64,408 KB
testcase_06 AC 60 ms
64,788 KB
testcase_07 AC 57 ms
64,728 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 94 ms
90,880 KB
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
mod = int(1e9 + 7)
# mod = 998244353

n = ii()
a = li()
m = 200010
b = [0] * m
d = [0] * m
for x in a:
    b[x] += x
    d[x] += 1
for i in range(1, m):
    b[i] += b[i - 1]
    d[i] += d[i - 1]
ans = 0
for x in a:
    ans += x * (d[-1] - d[x])
    for y in range(x * 2, m, x):
        ans -= (b[y - 1] - b[y - x]) - (y - x) * (d[y - 1] - d[y - x])
print(ans)
0