結果

問題 No.1808 Fullgold Alchemist
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-01-14 21:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,064 KB
最終ジャッジ日時 2024-11-20 07:57:18
合計ジャッジ時間 3,840 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 73 ms
96,128 KB
testcase_06 AC 87 ms
103,808 KB
testcase_07 AC 84 ms
102,144 KB
testcase_08 AC 124 ms
102,016 KB
testcase_09 AC 104 ms
102,272 KB
testcase_10 AC 101 ms
102,016 KB
testcase_11 AC 102 ms
102,016 KB
testcase_12 AC 83 ms
101,120 KB
testcase_13 AC 93 ms
102,656 KB
testcase_14 AC 93 ms
103,040 KB
testcase_15 AC 91 ms
103,040 KB
testcase_16 AC 47 ms
60,544 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 AC 53 ms
66,304 KB
testcase_19 AC 45 ms
60,416 KB
testcase_20 AC 55 ms
69,888 KB
testcase_21 AC 49 ms
63,488 KB
testcase_22 AC 39 ms
51,840 KB
testcase_23 AC 47 ms
62,592 KB
testcase_24 AC 47 ms
60,544 KB
testcase_25 AC 46 ms
60,928 KB
testcase_26 AC 53 ms
66,432 KB
testcase_27 AC 56 ms
69,248 KB
testcase_28 AC 99 ms
104,064 KB
testcase_29 AC 61 ms
74,112 KB
testcase_30 AC 59 ms
72,576 KB
testcase_31 AC 91 ms
98,048 KB
testcase_32 AC 72 ms
83,328 KB
testcase_33 AC 85 ms
93,568 KB
testcase_34 AC 99 ms
104,064 KB
testcase_35 AC 83 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

l = 0
r = max(A)+1

while r-l != 1:

    m = (l+r)//2

    now = 0
    flag = True

    for i in range(N):
        now += A[i]
        now -= M * m

        if now < 0:
            flag = False
            break

    if flag:
        l = m
    else:
        r = m

print (l)
0