結果

問題 No.1808 Fullgold Alchemist
ユーザー horitaka1999horitaka1999
提出日時 2022-01-15 10:09:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,708 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-11-21 08:00:11
合計ジャッジ時間 3,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 35 ms
51,456 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 73 ms
95,744 KB
testcase_06 AC 81 ms
102,656 KB
testcase_07 AC 77 ms
101,888 KB
testcase_08 AC 112 ms
102,016 KB
testcase_09 AC 99 ms
101,888 KB
testcase_10 AC 94 ms
102,036 KB
testcase_11 AC 96 ms
102,016 KB
testcase_12 AC 80 ms
100,608 KB
testcase_13 AC 87 ms
101,888 KB
testcase_14 AC 88 ms
101,632 KB
testcase_15 AC 87 ms
102,016 KB
testcase_16 AC 42 ms
59,648 KB
testcase_17 AC 37 ms
52,224 KB
testcase_18 AC 47 ms
65,664 KB
testcase_19 AC 40 ms
59,520 KB
testcase_20 AC 50 ms
69,248 KB
testcase_21 AC 43 ms
62,464 KB
testcase_22 AC 36 ms
51,712 KB
testcase_23 AC 42 ms
61,056 KB
testcase_24 AC 41 ms
59,520 KB
testcase_25 AC 42 ms
60,416 KB
testcase_26 AC 46 ms
65,152 KB
testcase_27 AC 49 ms
67,456 KB
testcase_28 AC 85 ms
102,528 KB
testcase_29 AC 57 ms
73,580 KB
testcase_30 AC 54 ms
71,680 KB
testcase_31 AC 85 ms
97,408 KB
testcase_32 AC 66 ms
82,688 KB
testcase_33 AC 79 ms
92,800 KB
testcase_34 AC 85 ms
101,888 KB
testcase_35 AC 74 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
def is_ok(k):
    sgm = 0
    for a in A:
        sgm += a - M * k
        if sgm < 0:
            return False
    return True

ok = 0
ng = 10 ** 9 + 1
while ng - ok > 1:
    k = (ng+ok) //2
    if is_ok(k):
        ok = k
    else:
        ng = k
print(ok)
0