結果

問題 No.1808 Fullgold Alchemist
ユーザー mkawa2mkawa2
提出日時 2022-01-14 21:34:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,196 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 124,460 KB
最終ジャッジ日時 2024-11-20 08:06:32
合計ジャッジ時間 5,246 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 76 ms
96,000 KB
testcase_06 AC 161 ms
124,460 KB
testcase_07 AC 146 ms
106,240 KB
testcase_08 AC 99 ms
98,292 KB
testcase_09 AC 97 ms
98,168 KB
testcase_10 AC 98 ms
98,236 KB
testcase_11 AC 180 ms
114,304 KB
testcase_12 AC 189 ms
116,864 KB
testcase_13 AC 195 ms
116,464 KB
testcase_14 AC 191 ms
116,912 KB
testcase_15 AC 195 ms
116,856 KB
testcase_16 AC 50 ms
63,616 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 71 ms
79,488 KB
testcase_19 AC 49 ms
61,696 KB
testcase_20 AC 80 ms
85,632 KB
testcase_21 AC 57 ms
68,864 KB
testcase_22 AC 39 ms
52,352 KB
testcase_23 AC 54 ms
66,304 KB
testcase_24 AC 49 ms
62,336 KB
testcase_25 AC 50 ms
63,232 KB
testcase_26 AC 71 ms
79,872 KB
testcase_27 AC 77 ms
82,176 KB
testcase_28 AC 186 ms
121,888 KB
testcase_29 AC 100 ms
93,552 KB
testcase_30 AC 91 ms
87,532 KB
testcase_31 AC 180 ms
113,572 KB
testcase_32 AC 135 ms
95,744 KB
testcase_33 AC 150 ms
105,088 KB
testcase_34 AC 191 ms
110,080 KB
testcase_35 AC 150 ms
101,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
md = 10**9+7
# md = 998244353


n, m = LI()
aa = LI()

def binary_search(l, r, ok, minimize):
    if minimize: l -= 1
    else: r += 1
    while l+1 < r:
        m = (l+r)//2
        if ok(m) ^ minimize: l = m
        else: r = m
    if minimize: return r
    return l

def ok(m):
    s = 0
    for a in aa[::-1]:
        if a > m:
            s = max(0, s-(a-m))
        else:
            s += m-a
    return s == 0

l, r = min(aa), max(aa)
ans = binary_search(l, r, ok, False)
print(ans//m)
0