結果

問題 No.1233 割り切れない気持ち
ユーザー uni_pythonuni_python
提出日時 2020-09-20 15:57:12
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 974 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 160,128 KB
最終ジャッジ日時 2024-06-24 10:47:29
合計ジャッジ時間 16,763 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
160,128 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 48 ms
58,624 KB
testcase_03 AC 68 ms
69,632 KB
testcase_04 AC 67 ms
68,736 KB
testcase_05 AC 47 ms
58,496 KB
testcase_06 AC 49 ms
58,880 KB
testcase_07 AC 280 ms
82,412 KB
testcase_08 AC 438 ms
88,192 KB
testcase_09 AC 838 ms
101,080 KB
testcase_10 AC 878 ms
104,192 KB
testcase_11 AC 249 ms
81,664 KB
testcase_12 AC 1,001 ms
108,156 KB
testcase_13 AC 1,011 ms
108,512 KB
testcase_14 AC 1,015 ms
107,264 KB
testcase_15 AC 969 ms
107,648 KB
testcase_16 AC 955 ms
107,972 KB
testcase_17 AC 224 ms
104,988 KB
testcase_18 AC 1,000 ms
106,540 KB
testcase_19 AC 211 ms
106,368 KB
testcase_20 AC 90 ms
98,176 KB
testcase_21 AC 241 ms
107,264 KB
testcase_22 AC 247 ms
107,136 KB
testcase_23 AC 240 ms
107,136 KB
testcase_24 AC 244 ms
107,264 KB
testcase_25 AC 240 ms
107,904 KB
testcase_26 AC 240 ms
107,392 KB
testcase_27 TLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

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]
        

        
    def calc(a):
        if a==1:
            return 0
    
        
        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
        return res
    
    ans=0
    for a in A:
        ans+=calc(a)
        
    print(ans)
            
            


main()
0