結果

問題 No.1808 Fullgold Alchemist
ユーザー O2MTO2MT
提出日時 2022-01-15 18:21:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 102,272 KB
最終ジャッジ日時 2024-11-21 21:19:31
合計ジャッジ時間 4,220 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 73 ms
95,232 KB
testcase_06 AC 91 ms
102,272 KB
testcase_07 AC 79 ms
102,144 KB
testcase_08 AC 108 ms
102,016 KB
testcase_09 AC 107 ms
101,760 KB
testcase_10 AC 107 ms
102,144 KB
testcase_11 AC 112 ms
101,760 KB
testcase_12 AC 85 ms
101,216 KB
testcase_13 AC 92 ms
101,084 KB
testcase_14 AC 86 ms
101,812 KB
testcase_15 AC 88 ms
101,176 KB
testcase_16 AC 43 ms
59,852 KB
testcase_17 AC 39 ms
52,908 KB
testcase_18 AC 49 ms
65,728 KB
testcase_19 AC 44 ms
60,176 KB
testcase_20 AC 53 ms
69,484 KB
testcase_21 AC 45 ms
62,796 KB
testcase_22 AC 37 ms
53,108 KB
testcase_23 AC 45 ms
61,892 KB
testcase_24 AC 43 ms
60,848 KB
testcase_25 AC 44 ms
60,536 KB
testcase_26 AC 50 ms
65,004 KB
testcase_27 AC 53 ms
68,536 KB
testcase_28 AC 91 ms
102,148 KB
testcase_29 AC 58 ms
74,020 KB
testcase_30 AC 56 ms
71,556 KB
testcase_31 AC 84 ms
97,592 KB
testcase_32 AC 70 ms
83,260 KB
testcase_33 AC 78 ms
91,556 KB
testcase_34 AC 86 ms
101,692 KB
testcase_35 AC 74 ms
88,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_ok(x):
    stock = 0
    for a in A:
        if a+stock >= x:
            stock = 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):
            ok = mid
        else:
            ng = mid
    return ok

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

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