結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-08-19 22:47:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 891 ms / 4,000 ms
コード長 421 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 122,300 KB
最終ジャッジ日時 2024-12-16 08:27:35
合計ジャッジ時間 5,932 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,528 KB
testcase_01 AC 42 ms
52,936 KB
testcase_02 AC 40 ms
53,100 KB
testcase_03 AC 59 ms
70,232 KB
testcase_04 AC 55 ms
68,340 KB
testcase_05 AC 61 ms
71,012 KB
testcase_06 AC 62 ms
68,000 KB
testcase_07 AC 55 ms
68,504 KB
testcase_08 AC 80 ms
76,188 KB
testcase_09 AC 78 ms
76,464 KB
testcase_10 AC 85 ms
76,032 KB
testcase_11 AC 88 ms
75,736 KB
testcase_12 AC 94 ms
76,216 KB
testcase_13 AC 337 ms
93,156 KB
testcase_14 AC 272 ms
87,684 KB
testcase_15 AC 578 ms
101,876 KB
testcase_16 AC 511 ms
102,088 KB
testcase_17 AC 408 ms
97,988 KB
testcase_18 AC 420 ms
98,520 KB
testcase_19 AC 370 ms
99,036 KB
testcase_20 AC 891 ms
122,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
n = int(input())
A = list(map(int,input().split()))
A.sort()
cum = [0]
for a in A:
    cum.append(cum[-1]+a)
ans = 0

for i in range(n-1)[::-1]:
    l = A[i+1]
    a = A[i]
    dl = l//a
    lind = i+1
    while lind < n:
        dl += 1
        rind = bisect_left(A,dl*a)
        ans += (rind-lind)*a
        ans -= (cum[rind]-cum[lind])-(rind-lind)*a*(dl-1)
        lind = rind
print(ans)
0