結果

問題 No.1808 Fullgold Alchemist
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-14 23:05:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 103,296 KB
最終ジャッジ日時 2024-11-20 13:48:28
合計ジャッジ時間 3,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 72 ms
95,616 KB
testcase_06 AC 84 ms
103,296 KB
testcase_07 AC 79 ms
101,760 KB
testcase_08 AC 118 ms
102,296 KB
testcase_09 AC 101 ms
102,016 KB
testcase_10 AC 96 ms
102,232 KB
testcase_11 AC 101 ms
102,016 KB
testcase_12 AC 83 ms
100,352 KB
testcase_13 AC 90 ms
102,144 KB
testcase_14 AC 90 ms
101,760 KB
testcase_15 AC 89 ms
102,016 KB
testcase_16 AC 43 ms
59,776 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 AC 49 ms
65,792 KB
testcase_19 AC 44 ms
59,136 KB
testcase_20 AC 53 ms
68,668 KB
testcase_21 AC 46 ms
62,464 KB
testcase_22 AC 38 ms
51,456 KB
testcase_23 AC 46 ms
60,800 KB
testcase_24 AC 44 ms
59,264 KB
testcase_25 AC 44 ms
59,392 KB
testcase_26 AC 49 ms
65,408 KB
testcase_27 AC 53 ms
67,840 KB
testcase_28 AC 90 ms
102,400 KB
testcase_29 AC 58 ms
73,728 KB
testcase_30 AC 56 ms
71,956 KB
testcase_31 AC 85 ms
97,280 KB
testcase_32 AC 67 ms
82,688 KB
testcase_33 AC 82 ms
92,288 KB
testcase_34 AC 89 ms
102,216 KB
testcase_35 AC 75 ms
89,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


def solve(k):
    ct = 0
    for a in A:
        ct += a-k*M
        if ct < 0:
            return False
    else:
        return True


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