結果

問題 No.1233 割り切れない気持ち
ユーザー shotoyooshotoyoo
提出日時 2020-09-19 02:18:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 3,153 ms
コード長 736 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 145,468 KB
最終ジャッジ日時 2024-06-22 23:03:26
合計ジャッジ時間 6,855 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 49 ms
63,104 KB
testcase_04 AC 47 ms
61,184 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 110 ms
92,508 KB
testcase_08 AC 146 ms
107,904 KB
testcase_09 AC 197 ms
111,144 KB
testcase_10 AC 194 ms
113,780 KB
testcase_11 AC 106 ms
90,564 KB
testcase_12 AC 219 ms
120,500 KB
testcase_13 AC 224 ms
120,236 KB
testcase_14 AC 227 ms
120,428 KB
testcase_15 AC 229 ms
120,816 KB
testcase_16 AC 223 ms
120,356 KB
testcase_17 AC 83 ms
102,016 KB
testcase_18 AC 195 ms
145,468 KB
testcase_19 AC 101 ms
106,496 KB
testcase_20 AC 82 ms
102,016 KB
testcase_21 AC 115 ms
106,368 KB
testcase_22 AC 116 ms
106,240 KB
testcase_23 AC 116 ms
106,112 KB
testcase_24 AC 117 ms
106,624 KB
testcase_25 AC 122 ms
106,752 KB
testcase_26 AC 119 ms
106,368 KB
testcase_27 AC 131 ms
107,392 KB
testcase_28 AC 132 ms
106,368 KB
testcase_29 AC 129 ms
106,624 KB
testcase_30 AC 130 ms
106,624 KB
testcase_31 AC 131 ms
106,880 KB
testcase_32 AC 128 ms
106,624 KB
testcase_33 AC 132 ms
106,752 KB
testcase_34 AC 133 ms
106,752 KB
testcase_35 AC 135 ms
106,496 KB
testcase_36 AC 148 ms
107,112 KB
testcase_37 AC 39 ms
53,376 KB
testcase_38 AC 102 ms
105,600 KB
testcase_39 AC 160 ms
110,220 KB
testcase_40 AC 159 ms
110,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


n = int(input())
a = list(map(int, input().split()))
a.sort()
from collections import Counter
c = Counter(a)
ks = list(set(a))
ks.sort()
m = max(a)
l = [0]*(m+1)
ans = 0
prv = 0
count = 0
for k in ks:
    for i in range(prv,k+1):
        l[i] += count
    for i in range(2*k,m+1,k):
        l[i] += -k*c[k]
#     print(l)
    count += c[k]
    prv = k+1
for i in range(1,m+1):
    l[i] = l[i-1] + l[i]
v0 = 0
v1 = 0
for i,v in enumerate(l):
    if i in c:
        v0 += c[i]*v
val = 0
for i in range(m,0,-1):
    if i in c:
        v1 += i*c[i]*val
        val += c[i]
ans = v0 + v1
print(ans)
0