結果

問題 No.1233 割り切れない気持ち
ユーザー uni_pythonuni_python
提出日時 2020-09-20 15:55:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,042 ms / 3,153 ms
コード長 1,091 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,816 KB
最終ジャッジ日時 2024-06-24 10:47:05
合計ジャッジ時間 13,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
54,016 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 53 ms
60,032 KB
testcase_03 AC 72 ms
69,504 KB
testcase_04 AC 70 ms
68,352 KB
testcase_05 AC 50 ms
59,520 KB
testcase_06 AC 51 ms
59,264 KB
testcase_07 AC 236 ms
82,832 KB
testcase_08 AC 352 ms
88,704 KB
testcase_09 AC 640 ms
101,248 KB
testcase_10 AC 710 ms
104,320 KB
testcase_11 AC 220 ms
82,432 KB
testcase_12 AC 791 ms
108,160 KB
testcase_13 AC 786 ms
108,800 KB
testcase_14 AC 760 ms
108,288 KB
testcase_15 AC 784 ms
108,288 KB
testcase_16 AC 769 ms
107,904 KB
testcase_17 AC 229 ms
105,216 KB
testcase_18 AC 1,042 ms
115,816 KB
testcase_19 AC 113 ms
107,264 KB
testcase_20 AC 96 ms
100,352 KB
testcase_21 AC 137 ms
108,032 KB
testcase_22 AC 136 ms
107,904 KB
testcase_23 AC 135 ms
107,648 KB
testcase_24 AC 133 ms
107,776 KB
testcase_25 AC 134 ms
108,288 KB
testcase_26 AC 136 ms
107,648 KB
testcase_27 AC 146 ms
107,776 KB
testcase_28 AC 146 ms
107,264 KB
testcase_29 AC 147 ms
107,776 KB
testcase_30 AC 144 ms
107,648 KB
testcase_31 AC 161 ms
107,520 KB
testcase_32 AC 147 ms
107,520 KB
testcase_33 AC 146 ms
107,648 KB
testcase_34 AC 146 ms
107,648 KB
testcase_35 AC 144 ms
107,648 KB
testcase_36 AC 144 ms
108,160 KB
testcase_37 AC 47 ms
53,760 KB
testcase_38 AC 93 ms
99,968 KB
testcase_39 AC 592 ms
106,112 KB
testcase_40 AC 603 ms
105,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

"""
A[i]=aを見る時
aより小さい数は全部そのまま足す,
aより大きく,2aより小さいものは全部足して,個数*aを引く
"""
def main():
    import bisect
    
    mod=10**9+7
    N=I()
    A=LI()
    A.sort()
    M=A[-1]
    S=[0]*(N+1)
    
    for i in range(N):
        S[i+1]=S[i]+A[i]
        
    from collections import defaultdict
    dd = defaultdict(int)
        
    def calc(a):
        if a==1:
            return 0
        
        if dd[a]!=0:
            return dd[a]
        
        res=0
        now=a
        num1=0
        while now<=M+a:
            num2=bisect.bisect_left(A,now)
            temp=S[num2] - S[num1]
            temp-=(num2-num1)*(now-a)
            res+=temp
            
            num1=num2
            now+=a
        dd[a]=res
        return res
    
    ans=0
    for a in A:
        ans+=calc(a)
        
    print(ans)
            
            


main()
0