結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー kazuppakazuppa
提出日時 2024-09-17 21:46:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 53,868 KB
最終ジャッジ日時 2024-09-17 21:46:56
合計ジャッジ時間 2,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,292 KB
testcase_01 AC 33 ms
52,812 KB
testcase_02 AC 34 ms
52,824 KB
testcase_03 AC 34 ms
52,176 KB
testcase_04 AC 35 ms
53,412 KB
testcase_05 AC 34 ms
52,604 KB
testcase_06 AC 35 ms
53,252 KB
testcase_07 AC 35 ms
52,396 KB
testcase_08 AC 36 ms
52,316 KB
testcase_09 AC 33 ms
52,600 KB
testcase_10 AC 33 ms
52,520 KB
testcase_11 AC 34 ms
52,356 KB
testcase_12 AC 34 ms
53,384 KB
testcase_13 AC 34 ms
52,124 KB
testcase_14 AC 33 ms
52,416 KB
testcase_15 AC 36 ms
51,896 KB
testcase_16 AC 36 ms
53,868 KB
testcase_17 AC 39 ms
53,248 KB
testcase_18 AC 36 ms
52,436 KB
testcase_19 AC 34 ms
53,068 KB
testcase_20 AC 34 ms
52,480 KB
testcase_21 AC 32 ms
52,492 KB
testcase_22 AC 34 ms
52,184 KB
testcase_23 AC 34 ms
52,292 KB
testcase_24 AC 34 ms
52,736 KB
testcase_25 AC 33 ms
52,616 KB
testcase_26 AC 35 ms
52,404 KB
testcase_27 AC 33 ms
52,760 KB
testcase_28 AC 34 ms
52,076 KB
testcase_29 WA -
testcase_30 AC 31 ms
52,524 KB
testcase_31 AC 32 ms
52,552 KB
testcase_32 AC 33 ms
52,236 KB
testcase_33 AC 32 ms
53,092 KB
testcase_34 AC 32 ms
52,372 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, n, m = map(int, input().split())
l = 0
r = 10**18
while r - l > 1:
    mid = (l + r) // 2
    e = a
    f = b
    if e < mid:
        f -= (mid - e) * m
        e = mid
    if f < mid:
        e -= (mid - f) * n
        f = mid
    if e >= mid and f >= mid:
        l = mid
    else:
        r = mid
print(l)
0