結果

問題 No.2227 King Kraken's Attack
ユーザー flygonflygon
提出日時 2023-02-24 23:12:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 273 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-10-02 11:26:13
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,328 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 55 ms
64,256 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 50 ms
60,928 KB
testcase_07 AC 48 ms
60,672 KB
testcase_08 AC 48 ms
61,440 KB
testcase_09 AC 45 ms
60,672 KB
testcase_10 AC 41 ms
58,368 KB
testcase_11 AC 46 ms
60,928 KB
testcase_12 AC 45 ms
60,416 KB
testcase_13 AC 48 ms
61,056 KB
testcase_14 AC 220 ms
63,104 KB
testcase_15 AC 192 ms
62,336 KB
testcase_16 AC 146 ms
62,720 KB
testcase_17 AC 152 ms
62,592 KB
testcase_18 AC 58 ms
60,928 KB
testcase_19 AC 78 ms
70,272 KB
testcase_20 AC 82 ms
70,016 KB
testcase_21 AC 117 ms
69,376 KB
testcase_22 AC 68 ms
60,672 KB
testcase_23 AC 51 ms
61,824 KB
testcase_24 AC 112 ms
67,200 KB
testcase_25 AC 53 ms
59,136 KB
testcase_26 AC 273 ms
65,152 KB
testcase_27 AC 60 ms
60,544 KB
testcase_28 AC 86 ms
69,888 KB
testcase_29 AC 88 ms
71,040 KB
testcase_30 AC 134 ms
64,896 KB
testcase_31 AC 89 ms
69,760 KB
testcase_32 AC 74 ms
69,504 KB
testcase_33 AC 75 ms
69,632 KB
testcase_34 AC 71 ms
69,248 KB
testcase_35 AC 77 ms
69,760 KB
testcase_36 AC 78 ms
68,608 KB
testcase_37 AC 47 ms
59,264 KB
testcase_38 AC 46 ms
59,264 KB
testcase_39 AC 45 ms
59,648 KB
testcase_40 AC 46 ms
59,264 KB
testcase_41 AC 52 ms
59,264 KB
testcase_42 AC 47 ms
59,392 KB
testcase_43 AC 48 ms
59,264 KB
testcase_44 AC 52 ms
59,520 KB
testcase_45 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,la,lb,ka,kb = map(int,input().split())

l = 0
r = h+w
while r-l > 1:
  m = (r+l)//2
  mx = 0
  for a in range(m+1):
    b = m-a
    tmp = min(h,la*a) * min(w,lb*b) + ka*a + kb * b 
    mx = max(mx,tmp)
  if mx >= h*w:
    r = m
  else:
    l = m
print(r)
0