結果

問題 No.1233 割り切れない気持ち
ユーザー NatsubiSoganNatsubiSogan
提出日時 2020-09-26 18:42:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,054 ms / 3,153 ms
コード長 345 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,200 KB
最終ジャッジ日時 2024-06-29 13:18:37
合計ジャッジ時間 12,920 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 24 ms
10,880 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 194 ms
15,820 KB
testcase_08 AC 307 ms
19,592 KB
testcase_09 AC 585 ms
26,052 KB
testcase_10 AC 602 ms
27,864 KB
testcase_11 AC 161 ms
16,180 KB
testcase_12 AC 724 ms
30,088 KB
testcase_13 AC 661 ms
30,284 KB
testcase_14 AC 696 ms
30,156 KB
testcase_15 AC 795 ms
30,284 KB
testcase_16 AC 776 ms
30,152 KB
testcase_17 AC 84 ms
14,728 KB
testcase_18 AC 1,054 ms
30,192 KB
testcase_19 AC 131 ms
30,780 KB
testcase_20 AC 83 ms
14,608 KB
testcase_21 AC 106 ms
31,072 KB
testcase_22 AC 104 ms
31,156 KB
testcase_23 AC 103 ms
31,032 KB
testcase_24 AC 102 ms
31,160 KB
testcase_25 AC 103 ms
31,028 KB
testcase_26 AC 103 ms
31,200 KB
testcase_27 AC 145 ms
30,568 KB
testcase_28 AC 144 ms
30,568 KB
testcase_29 AC 150 ms
30,568 KB
testcase_30 AC 150 ms
30,440 KB
testcase_31 AC 149 ms
30,436 KB
testcase_32 AC 149 ms
30,440 KB
testcase_33 AC 146 ms
30,564 KB
testcase_34 AC 140 ms
30,436 KB
testcase_35 AC 143 ms
30,440 KB
testcase_36 AC 153 ms
30,440 KB
testcase_37 AC 26 ms
10,880 KB
testcase_38 AC 180 ms
22,024 KB
testcase_39 AC 651 ms
25,532 KB
testcase_40 AC 666 ms
25,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate
n = int(input())
a = list(map(int, input().split()))
ans = 0
m = max(a)
lis = [0] * (m + 1)
for i in a:
    lis[i] += 1
cum = list(accumulate(lis))
for i in range(1, m + 1):
    if lis[i] == 0:
        continue
    for j in range(i, m + 1, i):
        ans += lis[i] * i * (n - cum[j - 1])
print(sum(a) * n - ans)
0