結果

問題 No.1808 Fullgold Alchemist
ユーザー H3PO4H3PO4
提出日時 2022-01-14 21:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 112,384 KB
最終ジャッジ日時 2024-11-20 07:58:30
合計ジャッジ時間 4,843 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 42 ms
51,456 KB
testcase_05 AC 88 ms
99,712 KB
testcase_06 AC 113 ms
112,128 KB
testcase_07 AC 112 ms
112,384 KB
testcase_08 AC 123 ms
101,888 KB
testcase_09 AC 118 ms
101,888 KB
testcase_10 AC 114 ms
101,632 KB
testcase_11 AC 119 ms
102,144 KB
testcase_12 AC 103 ms
105,344 KB
testcase_13 AC 118 ms
109,952 KB
testcase_14 AC 116 ms
109,824 KB
testcase_15 AC 115 ms
109,952 KB
testcase_16 AC 49 ms
59,264 KB
testcase_17 AC 42 ms
51,584 KB
testcase_18 AC 55 ms
66,432 KB
testcase_19 AC 47 ms
58,496 KB
testcase_20 AC 62 ms
69,376 KB
testcase_21 AC 52 ms
61,824 KB
testcase_22 AC 43 ms
51,712 KB
testcase_23 AC 50 ms
60,544 KB
testcase_24 AC 49 ms
59,136 KB
testcase_25 AC 50 ms
59,136 KB
testcase_26 AC 58 ms
64,768 KB
testcase_27 AC 60 ms
68,224 KB
testcase_28 AC 116 ms
103,552 KB
testcase_29 AC 69 ms
73,856 KB
testcase_30 AC 65 ms
71,936 KB
testcase_31 AC 114 ms
108,928 KB
testcase_32 AC 82 ms
84,480 KB
testcase_33 AC 94 ms
94,720 KB
testcase_34 AC 120 ms
104,192 KB
testcase_35 AC 89 ms
91,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def isOK(x):
    cur = 0
    for a in A:
        cur += a - x
        if cur < 0:
            return False
    return True


l, r = 0, 10 ** 18
while r - l > 1:
    m = (r + l) // 2
    if isOK(m * M):
        l = m
    else:
        r = m
print(l)
0