結果

問題 No.1233 割り切れない気持ち
ユーザー mlihua09mlihua09
提出日時 2020-09-18 22:03:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 379 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 109,380 KB
最終ジャッジ日時 2024-06-22 16:53:36
合計ジャッジ時間 6,158 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
65,060 KB
testcase_01 AC 53 ms
66,932 KB
testcase_02 AC 55 ms
66,656 KB
testcase_03 AC 53 ms
66,576 KB
testcase_04 AC 52 ms
66,716 KB
testcase_05 AC 51 ms
65,828 KB
testcase_06 AC 50 ms
65,532 KB
testcase_07 AC 73 ms
79,732 KB
testcase_08 AC 85 ms
87,692 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 70 ms
78,128 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 90 ms
105,760 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 91 ms
105,436 KB
testcase_21 AC 117 ms
108,636 KB
testcase_22 AC 115 ms
108,024 KB
testcase_23 AC 118 ms
107,952 KB
testcase_24 AC 122 ms
108,396 KB
testcase_25 AC 117 ms
108,304 KB
testcase_26 AC 117 ms
108,624 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 54 ms
67,712 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

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] * (10 ** 5 + 1)

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

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

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