結果

問題 No.1808 Fullgold Alchemist
ユーザー playerplayer
提出日時 2024-01-15 01:39:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 441 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 120,096 KB
最終ジャッジ日時 2024-09-28 02:09:34
合計ジャッジ時間 3,849 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,476 KB
testcase_01 AC 34 ms
52,360 KB
testcase_02 AC 35 ms
52,268 KB
testcase_03 AC 35 ms
52,936 KB
testcase_04 AC 35 ms
52,576 KB
testcase_05 AC 81 ms
112,076 KB
testcase_06 AC 99 ms
120,096 KB
testcase_07 AC 86 ms
117,816 KB
testcase_08 WA -
testcase_09 AC 109 ms
112,488 KB
testcase_10 AC 108 ms
113,120 KB
testcase_11 AC 110 ms
112,572 KB
testcase_12 AC 91 ms
117,408 KB
testcase_13 AC 100 ms
117,760 KB
testcase_14 AC 101 ms
117,752 KB
testcase_15 AC 98 ms
118,044 KB
testcase_16 AC 41 ms
61,924 KB
testcase_17 AC 36 ms
52,152 KB
testcase_18 AC 49 ms
69,936 KB
testcase_19 AC 40 ms
62,120 KB
testcase_20 AC 53 ms
73,772 KB
testcase_21 AC 46 ms
66,824 KB
testcase_22 AC 36 ms
52,836 KB
testcase_23 AC 44 ms
64,064 KB
testcase_24 AC 43 ms
61,684 KB
testcase_25 AC 43 ms
62,760 KB
testcase_26 AC 50 ms
69,160 KB
testcase_27 AC 52 ms
72,296 KB
testcase_28 AC 100 ms
104,116 KB
testcase_29 AC 60 ms
79,556 KB
testcase_30 AC 57 ms
78,224 KB
testcase_31 AC 98 ms
111,568 KB
testcase_32 AC 72 ms
91,924 KB
testcase_33 AC 89 ms
105,320 KB
testcase_34 AC 99 ms
104,152 KB
testcase_35 AC 84 ms
100,048 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 = -0
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