結果

問題 No.1233 割り切れない気持ち
ユーザー AEnAEn
提出日時 2022-12-17 19:27:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 3,153 ms
コード長 544 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 112,700 KB
最終ジャッジ日時 2024-11-17 04:33:56
合計ジャッジ時間 6,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,464 KB
testcase_01 AC 45 ms
63,428 KB
testcase_02 AC 55 ms
63,980 KB
testcase_03 AC 68 ms
66,076 KB
testcase_04 AC 66 ms
65,972 KB
testcase_05 AC 57 ms
63,080 KB
testcase_06 AC 60 ms
63,604 KB
testcase_07 AC 114 ms
88,608 KB
testcase_08 AC 123 ms
92,764 KB
testcase_09 AC 164 ms
102,744 KB
testcase_10 AC 166 ms
106,008 KB
testcase_11 AC 109 ms
87,680 KB
testcase_12 AC 175 ms
109,600 KB
testcase_13 AC 180 ms
109,532 KB
testcase_14 AC 178 ms
109,400 KB
testcase_15 AC 166 ms
109,612 KB
testcase_16 AC 176 ms
109,564 KB
testcase_17 AC 83 ms
103,388 KB
testcase_18 AC 173 ms
112,700 KB
testcase_19 AC 96 ms
109,988 KB
testcase_20 AC 76 ms
102,028 KB
testcase_21 AC 90 ms
106,532 KB
testcase_22 AC 88 ms
106,196 KB
testcase_23 AC 86 ms
105,732 KB
testcase_24 AC 90 ms
105,960 KB
testcase_25 AC 91 ms
105,512 KB
testcase_26 AC 93 ms
105,680 KB
testcase_27 AC 96 ms
109,124 KB
testcase_28 AC 103 ms
108,804 KB
testcase_29 AC 96 ms
106,800 KB
testcase_30 AC 93 ms
106,924 KB
testcase_31 AC 93 ms
107,012 KB
testcase_32 AC 92 ms
106,864 KB
testcase_33 AC 94 ms
107,060 KB
testcase_34 AC 89 ms
107,200 KB
testcase_35 AC 93 ms
106,980 KB
testcase_36 AC 95 ms
106,676 KB
testcase_37 AC 45 ms
63,048 KB
testcase_38 AC 77 ms
101,708 KB
testcase_39 AC 137 ms
108,472 KB
testcase_40 AC 132 ms
108,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = [0]*(2*10**5+5)
sm = [0]*(2*10**5+5)
for i in range(N):
    cnt[A[i]] += 1
    sm[A[i]] += A[i]
for i in range(2*10**5+4):
    cnt[i+1] += cnt[i]
    sm[i+1] += sm[i]

res = 0
mem = {}
for i in range(N):
    if A[i]==1:continue
    m = 0
    res += sm[-1]
    if A[i] in mem:
        res -= A[i]*mem[A[i]]
    else:
        for j in range(A[i],2*10**5+5,A[i]):
            m += (j//A[i])*(cnt[min(j+A[i],2*10**5+4)-1]-cnt[j-1])
        mem[A[i]] = m
        res -= A[i]*m
print(res)

0