結果

問題 No.1808 Fullgold Alchemist
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-11-22 04:34:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 252 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 81,988 KB
実行使用メモリ 271,368 KB
最終ジャッジ日時 2024-11-22 04:34:44
合計ジャッジ時間 11,010 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 677 ms
222,652 KB
testcase_06 AC 772 ms
255,580 KB
testcase_07 AC 1,008 ms
271,368 KB
testcase_08 AC 194 ms
108,352 KB
testcase_09 AC 743 ms
232,184 KB
testcase_10 AC 1,062 ms
268,480 KB
testcase_11 AC 728 ms
247,788 KB
testcase_12 AC 193 ms
107,204 KB
testcase_13 AC 175 ms
107,008 KB
testcase_14 AC 201 ms
107,140 KB
testcase_15 AC 208 ms
107,164 KB
testcase_16 AC 54 ms
67,840 KB
testcase_17 AC 39 ms
52,096 KB
testcase_18 AC 81 ms
83,584 KB
testcase_19 AC 53 ms
65,792 KB
testcase_20 AC 87 ms
86,400 KB
testcase_21 AC 71 ms
78,652 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 88 ms
77,696 KB
testcase_24 AC 55 ms
67,200 KB
testcase_25 AC 57 ms
73,600 KB
testcase_26 AC 79 ms
81,916 KB
testcase_27 AC 84 ms
83,644 KB
testcase_28 AC 167 ms
105,396 KB
testcase_29 AC 103 ms
87,424 KB
testcase_30 AC 92 ms
87,160 KB
testcase_31 AC 174 ms
101,504 KB
testcase_32 AC 143 ms
93,312 KB
testcase_33 AC 158 ms
99,072 KB
testcase_34 AC 196 ms
105,344 KB
testcase_35 AC 152 ms
96,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,c=map(int,input().split())
a=list(map(int,input().split()))
ok=0
ng=10**10
while ng-ok>1:
  m=(ok+ng)//2
  b=a.copy()
  for i in reversed(range(1,n)):
    t=max(m*c-b[i],0)
    b[i]+=t
    b[i-1]-=t
  if b[0]>=m*c:
    ok=m
  else:
    ng=m
print(ok)
0