結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-03-31 14:04:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-12-14 18:40:01
合計ジャッジ時間 2,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,428 KB
testcase_01 AC 38 ms
53,176 KB
testcase_02 AC 38 ms
53,560 KB
testcase_03 AC 38 ms
52,036 KB
testcase_04 AC 38 ms
52,956 KB
testcase_05 AC 39 ms
52,388 KB
testcase_06 AC 38 ms
53,184 KB
testcase_07 AC 38 ms
51,648 KB
testcase_08 AC 38 ms
52,384 KB
testcase_09 AC 39 ms
52,184 KB
testcase_10 AC 38 ms
53,108 KB
testcase_11 AC 38 ms
52,956 KB
testcase_12 AC 39 ms
52,556 KB
testcase_13 AC 38 ms
52,464 KB
testcase_14 AC 39 ms
52,368 KB
testcase_15 AC 39 ms
52,272 KB
testcase_16 AC 38 ms
52,068 KB
testcase_17 AC 39 ms
52,832 KB
testcase_18 AC 39 ms
51,892 KB
testcase_19 AC 39 ms
52,648 KB
testcase_20 AC 39 ms
53,244 KB
testcase_21 AC 38 ms
52,852 KB
testcase_22 AC 40 ms
52,452 KB
testcase_23 AC 39 ms
54,164 KB
testcase_24 AC 39 ms
53,420 KB
testcase_25 AC 38 ms
52,364 KB
testcase_26 AC 38 ms
52,032 KB
testcase_27 AC 38 ms
52,072 KB
testcase_28 AC 38 ms
52,272 KB
testcase_29 WA -
testcase_30 AC 39 ms
52,360 KB
testcase_31 AC 38 ms
52,984 KB
testcase_32 AC 38 ms
52,668 KB
testcase_33 AC 38 ms
52,152 KB
testcase_34 AC 39 ms
52,664 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

"""

import sys
from sys import stdin

A,B,N,M = map(int,input().split())

l = 0
r = 10**18

while r-l != 1:

    m = (l+r)//2

    nA = A-m
    nB = B-m

    if nA < 0 and nB < 0:
        r = m
    elif nA < 0:
        nA += nB // M

        if nA >= 0:
            l = m
        else:
            r = m
    elif nB < 0:
        nB += nA // N
        if nB >= 0:
            l = m
        else:
            r = m

    else:
        l = m

print (l)
0