結果

問題 No.1808 Fullgold Alchemist
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-14 22:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 371 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 104,156 KB
最終ジャッジ日時 2024-11-20 12:50:45
合計ジャッジ時間 4,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,344 KB
testcase_01 AC 36 ms
52,524 KB
testcase_02 AC 37 ms
52,568 KB
testcase_03 AC 36 ms
53,568 KB
testcase_04 AC 36 ms
52,028 KB
testcase_05 AC 68 ms
95,560 KB
testcase_06 AC 84 ms
104,156 KB
testcase_07 AC 76 ms
102,632 KB
testcase_08 AC 100 ms
101,576 KB
testcase_09 AC 98 ms
102,108 KB
testcase_10 AC 96 ms
102,012 KB
testcase_11 AC 97 ms
102,172 KB
testcase_12 AC 81 ms
101,524 KB
testcase_13 AC 98 ms
103,464 KB
testcase_14 AC 104 ms
103,880 KB
testcase_15 AC 108 ms
103,864 KB
testcase_16 AC 45 ms
62,196 KB
testcase_17 AC 37 ms
52,692 KB
testcase_18 AC 52 ms
68,284 KB
testcase_19 AC 44 ms
61,748 KB
testcase_20 AC 58 ms
71,328 KB
testcase_21 AC 47 ms
64,344 KB
testcase_22 AC 37 ms
51,828 KB
testcase_23 AC 47 ms
63,240 KB
testcase_24 AC 45 ms
61,784 KB
testcase_25 AC 47 ms
63,984 KB
testcase_26 AC 53 ms
67,812 KB
testcase_27 AC 57 ms
70,328 KB
testcase_28 AC 104 ms
103,876 KB
testcase_29 AC 69 ms
76,500 KB
testcase_30 AC 60 ms
74,300 KB
testcase_31 AC 96 ms
99,264 KB
testcase_32 AC 75 ms
84,944 KB
testcase_33 AC 88 ms
95,156 KB
testcase_34 AC 100 ms
103,440 KB
testcase_35 AC 86 ms
91,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def calc(x):
    count = 0
    for a in A:
        if a >= x*m:
            count += a-x*m
        else:
            count -= x*m-a
        if count < 0:
            return 0

    return 1
l = 0
r = 10**10
while r > l + 1:
    c = (r+l)//2

    if calc(c):
        l = c
    else:
        r = c

print(l)
0