結果

問題 No.1233 割り切れない気持ち
ユーザー uni_pythonuni_python
提出日時 2020-09-20 15:53:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 951 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-06-24 10:46:50
合計ジャッジ時間 24,204 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,040 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 65 ms
59,392 KB
testcase_03 AC 86 ms
75,392 KB
testcase_04 AC 84 ms
75,904 KB
testcase_05 AC 50 ms
59,264 KB
testcase_06 AC 51 ms
59,904 KB
testcase_07 AC 422 ms
82,188 KB
testcase_08 AC 685 ms
88,320 KB
testcase_09 AC 1,398 ms
100,352 KB
testcase_10 AC 1,566 ms
104,192 KB
testcase_11 AC 439 ms
82,076 KB
testcase_12 AC 1,650 ms
108,032 KB
testcase_13 AC 1,609 ms
108,544 KB
testcase_14 AC 1,699 ms
107,768 KB
testcase_15 AC 1,758 ms
107,776 KB
testcase_16 AC 1,650 ms
107,936 KB
testcase_17 AC 261 ms
105,072 KB
testcase_18 AC 1,666 ms
106,808 KB
testcase_19 AC 315 ms
106,420 KB
testcase_20 AC 81 ms
98,688 KB
testcase_21 AC 341 ms
107,392 KB
testcase_22 AC 343 ms
107,008 KB
testcase_23 AC 339 ms
106,880 KB
testcase_24 AC 340 ms
107,188 KB
testcase_25 AC 340 ms
107,780 KB
testcase_26 AC 338 ms
107,504 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
        while now<=M+a:
            num1=bisect.bisect_left(A,now-a)
            num2=bisect.bisect_left(A,now)
            temp=S[num2] - S[num1]
            temp-=(num2-num1)*(now-a)
            res+=temp
            
            now+=a
        return res
    
    ans=0
    for a in A:
        ans+=calc(a)
        
    print(ans)
            
            


main()
0