結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー 👑 KazunKazun
提出日時 2022-08-19 22:38:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 4,000 ms
コード長 574 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 109,720 KB
最終ジャッジ日時 2024-05-09 17:26:30
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 47 ms
62,208 KB
testcase_04 AC 47 ms
61,440 KB
testcase_05 AC 48 ms
62,336 KB
testcase_06 AC 46 ms
61,824 KB
testcase_07 AC 47 ms
62,080 KB
testcase_08 AC 57 ms
66,944 KB
testcase_09 AC 57 ms
67,328 KB
testcase_10 AC 56 ms
67,072 KB
testcase_11 AC 60 ms
69,248 KB
testcase_12 AC 59 ms
68,352 KB
testcase_13 AC 101 ms
88,192 KB
testcase_14 AC 91 ms
85,040 KB
testcase_15 AC 121 ms
93,696 KB
testcase_16 AC 118 ms
94,016 KB
testcase_17 AC 109 ms
91,520 KB
testcase_18 AC 104 ms
91,136 KB
testcase_19 AC 110 ms
91,784 KB
testcase_20 AC 159 ms
109,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    A=list(map(int,input().split()))
    A.sort()

    X=0
    for i in range(N):
        X+=(N-1-2*i)*A[i]

    A_max=max(A)
    T=[0]*(A_max+1)
    for a in A:
        T[a]=1

    for k in range(1,A_max+1):
        T[k]+=T[k-1]

    Y=0
    for k in range(1,A_max):
        if T[k]-T[k-1]==1:
            for p in range(1,A_max//k+1):
                left =max(1, p*k)
                right=min(A_max, (p+1)*k-1)

                Y+=k*p*(T[right]-T[left-1])
                if p==1:
                    Y-=k

    return X+Y

print(solve())
0