結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー wattaiheiwattaihei
提出日時 2022-08-20 11:25:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 4,000 ms
コード長 697 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 110,976 KB
最終ジャッジ日時 2024-12-16 08:01:24
合計ジャッジ時間 3,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 43 ms
51,968 KB
testcase_03 AC 61 ms
63,232 KB
testcase_04 AC 63 ms
63,616 KB
testcase_05 AC 60 ms
63,232 KB
testcase_06 AC 61 ms
62,592 KB
testcase_07 AC 65 ms
64,768 KB
testcase_08 AC 81 ms
73,088 KB
testcase_09 AC 80 ms
73,344 KB
testcase_10 AC 80 ms
73,600 KB
testcase_11 AC 81 ms
74,112 KB
testcase_12 AC 79 ms
74,112 KB
testcase_13 AC 120 ms
90,880 KB
testcase_14 AC 117 ms
88,704 KB
testcase_15 AC 135 ms
96,640 KB
testcase_16 AC 137 ms
95,872 KB
testcase_17 AC 131 ms
93,952 KB
testcase_18 AC 118 ms
93,824 KB
testcase_19 AC 127 ms
94,080 KB
testcase_20 AC 161 ms
110,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

M = max(A)+3

B = [0]*(M+1)
for a in A:
    B[a] += 1

C = [0]*(M+1)
D = [0]*(M+1)
for i in range(M):
    C[i+1] = C[i] + B[i+1]
    if B[i+1] == 1:
        D[i+1] = D[i] + i+1
    else:
        D[i+1] = D[i]

ans = 0
for x in range(1, M):
    if B[x] == 1:
        s = 0
        bucket_num = (M+1)//x
        for b in range(1, bucket_num+1):
            b_cnt = (C[x*(b+1)-1] if x*(b+1)-1 < M+1 else C[M]) - C[x*b-1]
            b_sum = (D[x*(b+1)-1] if x*(b+1)-1 < M+1 else D[M]) - D[x*b-1]
            r = b_cnt * x*(b+1) - b_sum
            s += r
        s -= x
        ans += s

print(ans)
0