結果

問題 No.1808 Fullgold Alchemist
ユーザー ryusukeryusuke
提出日時 2023-04-18 20:37:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 105,728 KB
最終ジャッジ日時 2024-10-13 20:19:30
合計ジャッジ時間 8,627 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 222 ms
102,784 KB
testcase_06 AC 261 ms
105,600 KB
testcase_07 AC 246 ms
105,728 KB
testcase_08 AC 277 ms
101,760 KB
testcase_09 AC 276 ms
101,888 KB
testcase_10 AC 275 ms
101,760 KB
testcase_11 AC 295 ms
102,016 KB
testcase_12 AC 247 ms
105,600 KB
testcase_13 AC 263 ms
104,960 KB
testcase_14 AC 251 ms
104,960 KB
testcase_15 AC 261 ms
105,216 KB
testcase_16 AC 61 ms
66,432 KB
testcase_17 AC 42 ms
52,352 KB
testcase_18 AC 94 ms
78,080 KB
testcase_19 AC 57 ms
62,976 KB
testcase_20 AC 106 ms
81,152 KB
testcase_21 AC 78 ms
75,392 KB
testcase_22 AC 45 ms
56,832 KB
testcase_23 AC 76 ms
75,008 KB
testcase_24 AC 62 ms
68,224 KB
testcase_25 AC 62 ms
68,864 KB
testcase_26 AC 92 ms
77,184 KB
testcase_27 AC 107 ms
79,488 KB
testcase_28 AC 277 ms
103,808 KB
testcase_29 AC 123 ms
83,072 KB
testcase_30 AC 116 ms
81,920 KB
testcase_31 AC 228 ms
100,480 KB
testcase_32 AC 175 ms
89,984 KB
testcase_33 AC 218 ms
97,152 KB
testcase_34 AC 250 ms
103,552 KB
testcase_35 AC 208 ms
94,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# verification-helper: PROBLEM https://yukicoder.me/problems/no/1808

def is_ok(k: int) -> bool:
    check = True
    cnt = 0
    for i in range(n):
        cnt += a[i]
        if cnt >= k * (i + 1): continue
        check = False

    return check


def binary_search(left: int, right: int) -> int:
    while right - left > 1:
        mid = (left + right) // 2
        if is_ok(mid):
            left = mid
        else:
            right = mid

    return left


def main():
    global n, a

    n, m = map(int, input().split())
    a = list(map(int, input().split()))

    print(binary_search(-1, 10**18) // m)


if __name__ == "__main__":
    main()
0