結果

問題 No.1233 割り切れない気持ち
ユーザー mlihua09mlihua09
提出日時 2020-09-18 22:04:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 3,153 ms
コード長 395 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 111,212 KB
最終ジャッジ日時 2024-06-22 19:16:11
合計ジャッジ時間 6,012 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
72,368 KB
testcase_01 AC 66 ms
71,388 KB
testcase_02 AC 63 ms
71,516 KB
testcase_03 AC 66 ms
72,064 KB
testcase_04 AC 62 ms
73,228 KB
testcase_05 AC 61 ms
70,524 KB
testcase_06 AC 60 ms
72,096 KB
testcase_07 AC 83 ms
83,580 KB
testcase_08 AC 93 ms
91,368 KB
testcase_09 AC 123 ms
103,872 KB
testcase_10 AC 131 ms
106,948 KB
testcase_11 AC 82 ms
83,216 KB
testcase_12 AC 136 ms
110,728 KB
testcase_13 AC 138 ms
111,008 KB
testcase_14 AC 139 ms
110,524 KB
testcase_15 AC 142 ms
110,596 KB
testcase_16 AC 137 ms
111,212 KB
testcase_17 AC 101 ms
106,848 KB
testcase_18 AC 103 ms
109,328 KB
testcase_19 AC 107 ms
109,620 KB
testcase_20 AC 96 ms
106,848 KB
testcase_21 AC 127 ms
109,912 KB
testcase_22 AC 126 ms
109,472 KB
testcase_23 AC 125 ms
109,568 KB
testcase_24 AC 126 ms
109,916 KB
testcase_25 AC 129 ms
109,856 KB
testcase_26 AC 128 ms
109,956 KB
testcase_27 AC 136 ms
110,332 KB
testcase_28 AC 130 ms
110,292 KB
testcase_29 AC 130 ms
110,060 KB
testcase_30 AC 129 ms
110,012 KB
testcase_31 AC 130 ms
110,164 KB
testcase_32 AC 128 ms
109,852 KB
testcase_33 AC 131 ms
110,084 KB
testcase_34 AC 133 ms
110,004 KB
testcase_35 AC 129 ms
110,100 KB
testcase_36 AC 132 ms
110,296 KB
testcase_37 AC 63 ms
71,664 KB
testcase_38 AC 100 ms
106,800 KB
testcase_39 AC 104 ms
108,072 KB
testcase_40 AC 100 ms
108,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

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

A.sort()

ans = sum(A) * N

from bisect import bisect_left
X = A[-1]
note = [0] * (2 * 10 ** 5 + 1)

for a in A:
    note[a] += 1
    
S = note.copy()

for i in range(2 * 10 ** 5, 0, -1):
    S[i - 1] += S[i]

for i in range(1, 2 * 10 ** 5 + 1):
    for j in range(i, 2 * 10 ** 5 + 1, i):
        ans -= note[i] * i * S[j]
    
print(ans)
0