結果

問題 No.1808 Fullgold Alchemist
ユーザー playerplayer
提出日時 2024-01-15 01:38:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,972 KB
最終ジャッジ日時 2024-09-28 02:09:30
合計ジャッジ時間 4,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 84 ms
111,616 KB
testcase_06 AC 99 ms
119,972 KB
testcase_07 AC 91 ms
117,888 KB
testcase_08 WA -
testcase_09 AC 110 ms
112,280 KB
testcase_10 AC 106 ms
112,408 KB
testcase_11 AC 106 ms
112,848 KB
testcase_12 AC 92 ms
117,120 KB
testcase_13 AC 98 ms
117,760 KB
testcase_14 AC 95 ms
117,888 KB
testcase_15 AC 101 ms
118,144 KB
testcase_16 AC 43 ms
61,184 KB
testcase_17 AC 33 ms
52,224 KB
testcase_18 AC 49 ms
69,632 KB
testcase_19 AC 42 ms
60,288 KB
testcase_20 AC 51 ms
73,088 KB
testcase_21 AC 43 ms
64,256 KB
testcase_22 AC 36 ms
51,456 KB
testcase_23 AC 42 ms
63,104 KB
testcase_24 AC 43 ms
61,184 KB
testcase_25 AC 43 ms
61,440 KB
testcase_26 AC 50 ms
68,736 KB
testcase_27 AC 53 ms
71,936 KB
testcase_28 AC 100 ms
104,248 KB
testcase_29 AC 59 ms
78,976 KB
testcase_30 AC 59 ms
76,800 KB
testcase_31 AC 100 ms
111,360 KB
testcase_32 AC 70 ms
91,136 KB
testcase_33 AC 91 ms
103,936 KB
testcase_34 AC 98 ms
103,680 KB
testcase_35 AC 82 ms
99,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

acc = [0]
for i in a:
    acc.append(acc[-1] + i)

left = -1
right = 10**9

while abs(right - left) > 1:
    mid = (right + left) // 2
    flag = True
    for i in range(n):
        if acc[i + 1] >= (i + 1) * mid * m:
            continue
        else:
            flag = False
            break

    if flag:
        left = mid
    else:
        right = mid

print(left)
0