結果

問題 No.1808 Fullgold Alchemist
ユーザー flippergoflippergo
提出日時 2024-12-10 08:49:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 457 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-12-10 08:49:52
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 45 ms
51,840 KB
testcase_04 AC 38 ms
51,456 KB
testcase_05 AC 73 ms
95,360 KB
testcase_06 AC 90 ms
104,920 KB
testcase_07 AC 76 ms
101,760 KB
testcase_08 AC 117 ms
101,888 KB
testcase_09 AC 101 ms
101,760 KB
testcase_10 AC 97 ms
101,760 KB
testcase_11 AC 102 ms
102,144 KB
testcase_12 AC 81 ms
100,864 KB
testcase_13 AC 103 ms
104,192 KB
testcase_14 AC 117 ms
105,856 KB
testcase_15 AC 122 ms
105,600 KB
testcase_16 AC 49 ms
62,080 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 56 ms
68,352 KB
testcase_19 AC 47 ms
60,928 KB
testcase_20 AC 62 ms
72,448 KB
testcase_21 AC 51 ms
64,384 KB
testcase_22 AC 38 ms
51,968 KB
testcase_23 AC 50 ms
63,488 KB
testcase_24 AC 50 ms
62,592 KB
testcase_25 AC 50 ms
62,720 KB
testcase_26 AC 56 ms
67,072 KB
testcase_27 AC 62 ms
70,272 KB
testcase_28 AC 114 ms
103,808 KB
testcase_29 AC 69 ms
75,520 KB
testcase_30 AC 72 ms
73,344 KB
testcase_31 AC 119 ms
100,224 KB
testcase_32 AC 82 ms
85,632 KB
testcase_33 AC 113 ms
95,104 KB
testcase_34 AC 114 ms
103,936 KB
testcase_35 AC 95 ms
91,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))
high = 10**9+1
low = 0
while high-low>1:
    mid = (high+low)//2
    d = 0
    flag = True
    for i in range(N):
        if A[i]>mid*M:
            d += A[i]-mid*M
        elif A[i]<mid*M:
            if d>=mid*M-A[i]:
                d -= mid*M-A[i]
            else:
                flag = False
                break
    if flag:
        low = mid
    else:
        high = mid
print(low)
0