結果

問題 No.1233 割り切れない気持ち
ユーザー convexineqconvexineq
提出日時 2021-02-17 22:47:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 3,153 ms
コード長 327 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 116,260 KB
最終ジャッジ日時 2024-09-14 07:41:06
合計ジャッジ時間 8,313 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
78,080 KB
testcase_01 AC 87 ms
78,336 KB
testcase_02 AC 77 ms
78,592 KB
testcase_03 AC 80 ms
78,464 KB
testcase_04 AC 79 ms
78,336 KB
testcase_05 AC 79 ms
78,548 KB
testcase_06 AC 77 ms
78,080 KB
testcase_07 AC 95 ms
89,600 KB
testcase_08 AC 104 ms
96,128 KB
testcase_09 AC 121 ms
109,184 KB
testcase_10 AC 127 ms
112,768 KB
testcase_11 AC 97 ms
88,348 KB
testcase_12 AC 131 ms
112,152 KB
testcase_13 AC 132 ms
111,872 KB
testcase_14 AC 129 ms
112,072 KB
testcase_15 AC 130 ms
111,872 KB
testcase_16 AC 131 ms
111,872 KB
testcase_17 AC 123 ms
114,592 KB
testcase_18 AC 127 ms
112,256 KB
testcase_19 AC 141 ms
115,200 KB
testcase_20 AC 121 ms
114,216 KB
testcase_21 AC 129 ms
115,700 KB
testcase_22 AC 131 ms
115,968 KB
testcase_23 AC 131 ms
115,712 KB
testcase_24 AC 129 ms
115,584 KB
testcase_25 AC 129 ms
115,860 KB
testcase_26 AC 130 ms
115,456 KB
testcase_27 AC 132 ms
116,092 KB
testcase_28 AC 132 ms
116,112 KB
testcase_29 AC 131 ms
116,096 KB
testcase_30 AC 133 ms
115,968 KB
testcase_31 AC 131 ms
115,712 KB
testcase_32 AC 132 ms
116,260 KB
testcase_33 AC 131 ms
116,096 KB
testcase_34 AC 131 ms
116,256 KB
testcase_35 AC 131 ms
115,816 KB
testcase_36 AC 132 ms
116,148 KB
testcase_37 AC 79 ms
78,208 KB
testcase_38 AC 124 ms
114,304 KB
testcase_39 AC 128 ms
115,456 KB
testcase_40 AC 127 ms
115,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
N = 2*10**5+3
r = [0]*N
for ai in a:
    r[ai] += 1
acc = r[:] + [0]
for i in range(N)[::-1]:
    acc[i] += acc[i+1]

ans = sum(a)*(n-r[1])
for i in range(2,N):
    v = 0
    for j in range(1,N//i+1):
        v += j*(acc[j*i] - acc[min(N,(j+1)*i)])
    ans -= r[i]*i*v
print(ans)
0