結果

問題 No.1808 Fullgold Alchemist
ユーザー ygd.ygd.
提出日時 2022-01-14 21:46:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 912 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,524 KB
実行使用メモリ 104,116 KB
最終ジャッジ日時 2024-11-20 09:14:01
合計ジャッジ時間 3,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,152 KB
testcase_01 AC 42 ms
54,480 KB
testcase_02 AC 42 ms
53,536 KB
testcase_03 AC 42 ms
53,352 KB
testcase_04 AC 42 ms
54,076 KB
testcase_05 AC 75 ms
98,300 KB
testcase_06 AC 86 ms
104,116 KB
testcase_07 AC 83 ms
103,396 KB
testcase_08 AC 115 ms
100,644 KB
testcase_09 AC 104 ms
101,156 KB
testcase_10 AC 101 ms
100,648 KB
testcase_11 AC 104 ms
99,996 KB
testcase_12 AC 85 ms
102,664 KB
testcase_13 AC 91 ms
103,192 KB
testcase_14 AC 92 ms
103,072 KB
testcase_15 AC 90 ms
103,916 KB
testcase_16 AC 48 ms
62,100 KB
testcase_17 AC 42 ms
53,912 KB
testcase_18 AC 53 ms
68,100 KB
testcase_19 AC 47 ms
60,876 KB
testcase_20 AC 57 ms
70,436 KB
testcase_21 AC 49 ms
64,356 KB
testcase_22 AC 42 ms
55,416 KB
testcase_23 AC 48 ms
63,980 KB
testcase_24 AC 47 ms
61,836 KB
testcase_25 AC 47 ms
61,864 KB
testcase_26 AC 54 ms
68,444 KB
testcase_27 AC 56 ms
70,008 KB
testcase_28 AC 104 ms
99,360 KB
testcase_29 AC 63 ms
76,196 KB
testcase_30 AC 60 ms
73,192 KB
testcase_31 AC 90 ms
99,476 KB
testcase_32 AC 73 ms
85,660 KB
testcase_33 AC 86 ms
94,480 KB
testcase_34 AC 102 ms
99,240 KB
testcase_35 AC 78 ms
91,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
#input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#MOD = pow(10,9) + 7
#MOD = 998244353


def main():
    N,M = map(int,input().split())
    A = list(map(int,input().split()))

    def check(x):
        amari = 0
        for a in A:
            if a + amari < x*M:
                return False
            amari = (a + amari - x*M)
        return True

    ok = 0
    ng = pow(10,9) + 100
    while abs(ok-ng) > 1:
        mid = (ok+ng)//2
        if check(mid):
            ok = mid
        else:
            ng = mid
    print(ok)

if __name__ == '__main__':
    main()
0