結果

問題 No.1233 割り切れない気持ち
ユーザー brthyyjpbrthyyjp
提出日時 2021-02-26 13:01:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 923 ms / 3,153 ms
コード長 389 bytes
コンパイル時間 411 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-10-02 05:34:01
合計ジャッジ時間 12,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 41 ms
58,240 KB
testcase_03 AC 59 ms
68,736 KB
testcase_04 AC 56 ms
67,328 KB
testcase_05 AC 40 ms
57,728 KB
testcase_06 AC 41 ms
57,984 KB
testcase_07 AC 204 ms
82,840 KB
testcase_08 AC 304 ms
88,320 KB
testcase_09 AC 511 ms
100,848 KB
testcase_10 AC 575 ms
104,092 KB
testcase_11 AC 171 ms
82,432 KB
testcase_12 AC 648 ms
107,600 KB
testcase_13 AC 630 ms
107,648 KB
testcase_14 AC 610 ms
107,300 KB
testcase_15 AC 695 ms
107,620 KB
testcase_16 AC 658 ms
107,260 KB
testcase_17 AC 76 ms
97,664 KB
testcase_18 AC 923 ms
110,336 KB
testcase_19 AC 85 ms
104,192 KB
testcase_20 AC 74 ms
97,024 KB
testcase_21 AC 109 ms
103,680 KB
testcase_22 AC 107 ms
103,272 KB
testcase_23 AC 107 ms
103,680 KB
testcase_24 AC 107 ms
103,680 KB
testcase_25 AC 107 ms
103,592 KB
testcase_26 AC 108 ms
103,680 KB
testcase_27 AC 125 ms
107,136 KB
testcase_28 AC 124 ms
107,008 KB
testcase_29 AC 127 ms
106,752 KB
testcase_30 AC 125 ms
106,752 KB
testcase_31 AC 125 ms
107,136 KB
testcase_32 AC 123 ms
107,008 KB
testcase_33 AC 124 ms
106,624 KB
testcase_34 AC 123 ms
107,200 KB
testcase_35 AC 123 ms
106,948 KB
testcase_36 AC 123 ms
107,296 KB
testcase_37 AC 36 ms
51,968 KB
testcase_38 AC 117 ms
103,680 KB
testcase_39 AC 533 ms
105,012 KB
testcase_40 AC 530 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import bisect
ans = 0
memo = {}
for i, a in enumerate(A):
    if a in memo:
        ans -= memo[a]
        continue
    temp = 0
    l = i
    x = 1
    while l < n:
        r = bisect.bisect_left(A, (x+1)*a)
        temp += (r-l)*x*a
        l = r
        x += 1
    memo[a] = temp
    ans -= temp
ans += sum(A)*n
print(ans)
0