結果

問題 No.1808 Fullgold Alchemist
ユーザー O2MTO2MT
提出日時 2022-01-15 18:17:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 711 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 102,212 KB
最終ジャッジ日時 2024-11-21 21:15:03
合計ジャッジ時間 4,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 81 ms
95,616 KB
testcase_06 AC 99 ms
102,212 KB
testcase_07 AC 92 ms
101,760 KB
testcase_08 WA -
testcase_09 AC 113 ms
102,144 KB
testcase_10 AC 116 ms
102,084 KB
testcase_11 AC 117 ms
101,732 KB
testcase_12 AC 88 ms
101,632 KB
testcase_13 AC 95 ms
101,632 KB
testcase_14 AC 91 ms
101,288 KB
testcase_15 AC 95 ms
101,632 KB
testcase_16 AC 45 ms
59,520 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 52 ms
65,024 KB
testcase_19 WA -
testcase_20 AC 57 ms
68,128 KB
testcase_21 AC 49 ms
61,696 KB
testcase_22 AC 40 ms
52,480 KB
testcase_23 AC 48 ms
60,796 KB
testcase_24 AC 46 ms
59,648 KB
testcase_25 AC 46 ms
59,904 KB
testcase_26 AC 52 ms
64,768 KB
testcase_27 AC 55 ms
67,712 KB
testcase_28 AC 97 ms
101,740 KB
testcase_29 AC 64 ms
72,900 KB
testcase_30 AC 60 ms
71,504 KB
testcase_31 AC 93 ms
96,856 KB
testcase_32 WA -
testcase_33 AC 86 ms
91,776 KB
testcase_34 AC 98 ms
101,760 KB
testcase_35 AC 82 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(x):
    stock = 0
    for a in A:
        if a+stock >= x:
            stock += a-x
            continue
        return False
    return True


def meguru_bisect(ng, ok):
    '''
    初期値のng,okを受け取り,is_okを満たす最小(最大)のokを返す
    まずis_okを定義すべし
    ng ok は  とり得る最小の値-1 とり得る最大の値+1
    最大最小が逆の場合はよしなにひっくり返す
    '''
    while (abs(ok - ng) > 1):
        mid = (ok + ng) // 2
        if is_ok(mid):
            ng = mid
        else:
            ok = mid
    return ok

N,M = map(int,input().split())
A = list(map(int,input().split()))

ans = meguru_bisect(0,10**18)//M
print(ans)
0