結果

問題 No.1808 Fullgold Alchemist
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-01-14 21:43:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 481 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-11-20 09:03:45
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,840 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 81 ms
96,384 KB
testcase_06 AC 84 ms
103,424 KB
testcase_07 AC 82 ms
103,040 KB
testcase_08 AC 116 ms
102,016 KB
testcase_09 AC 117 ms
102,272 KB
testcase_10 AC 116 ms
102,272 KB
testcase_11 AC 125 ms
101,888 KB
testcase_12 AC 86 ms
102,528 KB
testcase_13 AC 101 ms
103,680 KB
testcase_14 AC 104 ms
104,008 KB
testcase_15 AC 110 ms
104,576 KB
testcase_16 AC 48 ms
61,952 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 57 ms
67,584 KB
testcase_19 AC 47 ms
60,160 KB
testcase_20 AC 61 ms
71,040 KB
testcase_21 AC 53 ms
63,616 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 49 ms
62,848 KB
testcase_24 AC 48 ms
61,056 KB
testcase_25 AC 50 ms
62,080 KB
testcase_26 AC 57 ms
67,072 KB
testcase_27 AC 61 ms
70,400 KB
testcase_28 AC 124 ms
104,320 KB
testcase_29 AC 70 ms
75,008 KB
testcase_30 AC 62 ms
72,576 KB
testcase_31 AC 112 ms
100,480 KB
testcase_32 AC 79 ms
84,636 KB
testcase_33 AC 96 ms
93,696 KB
testcase_34 AC 112 ms
104,064 KB
testcase_35 AC 95 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
sum_ = sum(a)

def ok(s):
    tame = 0
    res = True
    for i in range(n):
        if a[i] < s:
            if tame + a[i] < s:
                res = False
                break
            else:
                tame -= s-a[i]
        else:
            tame += a[i] - s
    return res
l = -1
r = 10 ** 9 + 1
while r-l>1:
    mid = (l + r) // 2
    if ok(mid):
        l = mid
    else:
        r = mid
print(l//m)
0