結果

問題 No.1808 Fullgold Alchemist
ユーザー ShirotsumeShirotsume
提出日時 2022-01-14 22:20:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 151,680 KB
最終ジャッジ日時 2024-11-20 11:37:52
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,248 KB
testcase_01 AC 44 ms
53,632 KB
testcase_02 AC 42 ms
53,248 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 42 ms
53,120 KB
testcase_05 AC 112 ms
142,848 KB
testcase_06 AC 129 ms
151,680 KB
testcase_07 AC 121 ms
149,248 KB
testcase_08 AC 166 ms
145,496 KB
testcase_09 AC 143 ms
145,760 KB
testcase_10 AC 140 ms
145,512 KB
testcase_11 AC 143 ms
145,640 KB
testcase_12 AC 123 ms
147,584 KB
testcase_13 AC 134 ms
151,040 KB
testcase_14 AC 135 ms
151,180 KB
testcase_15 AC 130 ms
149,024 KB
testcase_16 AC 51 ms
63,232 KB
testcase_17 AC 42 ms
53,632 KB
testcase_18 AC 61 ms
75,692 KB
testcase_19 AC 50 ms
62,080 KB
testcase_20 AC 69 ms
81,664 KB
testcase_21 AC 55 ms
68,736 KB
testcase_22 AC 41 ms
53,376 KB
testcase_23 AC 52 ms
66,304 KB
testcase_24 AC 50 ms
63,488 KB
testcase_25 AC 52 ms
63,488 KB
testcase_26 AC 63 ms
73,728 KB
testcase_27 AC 68 ms
78,720 KB
testcase_28 AC 135 ms
122,896 KB
testcase_29 AC 77 ms
89,728 KB
testcase_30 AC 74 ms
86,820 KB
testcase_31 AC 129 ms
112,680 KB
testcase_32 AC 95 ms
108,928 KB
testcase_33 AC 118 ms
126,336 KB
testcase_34 AC 135 ms
121,476 KB
testcase_35 AC 108 ms
120,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int,input().split())
a = list(map(int,input().split()))
import copy
def check(x, a):
    for i in range(n):
        if a[i] < m * x:
            return False
        elif i < n - 1:
            a[i + 1] += a[i] - m * x
    return True

ok = 0
ng = 10 ** 9 + 3

while abs(ok - ng) > 1:
    A = copy.copy(a)
    mid = (ok + ng) // 2
    if check(mid, A):
        ok = mid
    else:
        ng = mid
print(ok)
0