結果

問題 No.2227 King Kraken's Attack
ユーザー timitimi
提出日時 2023-03-08 16:13:53
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 521 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-10-02 11:40:39
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 42 ms
52,316 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 38 ms
59,264 KB
testcase_04 AC 33 ms
51,968 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 31 ms
51,840 KB
testcase_08 AC 32 ms
52,224 KB
testcase_09 AC 43 ms
60,416 KB
testcase_10 AC 32 ms
52,608 KB
testcase_11 AC 33 ms
52,264 KB
testcase_12 AC 38 ms
59,392 KB
testcase_13 AC 40 ms
59,136 KB
testcase_14 AC 34 ms
51,968 KB
testcase_15 AC 34 ms
51,840 KB
testcase_16 AC 32 ms
51,840 KB
testcase_17 AC 186 ms
60,416 KB
testcase_18 AC 34 ms
52,352 KB
testcase_19 AC 31 ms
52,096 KB
testcase_20 AC 43 ms
59,648 KB
testcase_21 AC 103 ms
61,312 KB
testcase_22 AC 34 ms
52,352 KB
testcase_23 AC 33 ms
52,096 KB
testcase_24 AC 155 ms
62,464 KB
testcase_25 AC 53 ms
59,616 KB
testcase_26 AC 485 ms
63,488 KB
testcase_27 AC 34 ms
52,096 KB
testcase_28 AC 53 ms
61,568 KB
testcase_29 AC 48 ms
60,160 KB
testcase_30 AC 49 ms
61,568 KB
testcase_31 AC 56 ms
61,568 KB
testcase_32 AC 46 ms
61,952 KB
testcase_33 AC 44 ms
62,080 KB
testcase_34 AC 40 ms
60,032 KB
testcase_35 AC 52 ms
64,256 KB
testcase_36 AC 42 ms
59,904 KB
testcase_37 AC 34 ms
52,352 KB
testcase_38 AC 32 ms
52,224 KB
testcase_39 AC 32 ms
52,352 KB
testcase_40 AC 35 ms
51,968 KB
testcase_41 AC 34 ms
52,480 KB
testcase_42 AC 33 ms
52,224 KB
testcase_43 AC 34 ms
52,480 KB
testcase_44 AC 32 ms
52,224 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=(H-1)//LA+1
if KA!=0:
  Y=min((H*W-1)//KA+1,Y)
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