結果

問題 No.2227 King Kraken's Attack
ユーザー timitimi
提出日時 2023-03-08 16:11:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 505 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 67,188 KB
最終ジャッジ日時 2024-10-02 11:40:28
合計ジャッジ時間 3,713 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,748 KB
testcase_01 AC 37 ms
52,784 KB
testcase_02 AC 37 ms
53,220 KB
testcase_03 AC 44 ms
59,744 KB
testcase_04 AC 37 ms
53,480 KB
testcase_05 AC 38 ms
53,620 KB
testcase_06 AC 37 ms
51,836 KB
testcase_07 AC 36 ms
52,976 KB
testcase_08 AC 37 ms
52,088 KB
testcase_09 AC 47 ms
61,508 KB
testcase_10 AC 38 ms
53,432 KB
testcase_11 AC 37 ms
52,684 KB
testcase_12 AC 42 ms
59,620 KB
testcase_13 AC 45 ms
60,056 KB
testcase_14 AC 38 ms
52,804 KB
testcase_15 AC 38 ms
52,860 KB
testcase_16 AC 39 ms
52,800 KB
testcase_17 AC 196 ms
60,816 KB
testcase_18 AC 37 ms
53,248 KB
testcase_19 AC 37 ms
52,660 KB
testcase_20 AC 49 ms
60,368 KB
testcase_21 AC 116 ms
62,192 KB
testcase_22 AC 38 ms
52,464 KB
testcase_23 AC 36 ms
52,944 KB
testcase_24 AC 171 ms
63,440 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 39 ms
53,092 KB
testcase_28 AC 61 ms
63,556 KB
testcase_29 AC 51 ms
62,112 KB
testcase_30 AC 51 ms
62,468 KB
testcase_31 AC 65 ms
61,864 KB
testcase_32 AC 54 ms
62,872 KB
testcase_33 AC 51 ms
62,200 KB
testcase_34 AC 47 ms
60,856 KB
testcase_35 AC 61 ms
65,524 KB
testcase_36 AC 48 ms
61,012 KB
testcase_37 AC 37 ms
53,008 KB
testcase_38 AC 38 ms
53,668 KB
testcase_39 AC 38 ms
53,024 KB
testcase_40 AC 38 ms
53,696 KB
testcase_41 AC 37 ms
53,256 KB
testcase_42 AC 39 ms
53,076 KB
testcase_43 AC 38 ms
52,752 KB
testcase_44 AC 38 ms
52,256 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,LA,LB,KA,KB=map(int, input().split())
if KA==0 and KB==0:
  print((H-1)//LA+(W-1)//LB+2)
  exit()
if KB==0:
  H,W,LA,LB,KA,KB=W,H,LB,LA,KB,KA
import bisect
Y=min((H*W-1)//KA+1,(H-1)//LA+1)
ans=10**10
for y in range(Y+1):
  xx=max(0,H*W-y*KA)
  if xx==0:
    ans=min(ans,y)
  else:
    X=(xx-1)//KB+1
    ng,ok=-1,X+1
    while ok-ng>1:
      mid=(ok+ng)//2
      ko=y*KA+mid*KB+min(H,LA*y)*min(W,LB*mid)
      if ko>=H*W:
        ok=mid
      else:
        ng=mid
    ans=min(ans,y+ok)
print(ans)
    
0