結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー miya145592miya145592
提出日時 2023-05-09 00:41:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 140 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 67,408 KB
最終ジャッジ日時 2024-11-25 13:59:12
合計ジャッジ時間 2,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,692 KB
testcase_01 AC 35 ms
53,812 KB
testcase_02 AC 34 ms
52,492 KB
testcase_03 AC 34 ms
52,616 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 35 ms
53,812 KB
testcase_07 AC 35 ms
52,416 KB
testcase_08 AC 34 ms
51,552 KB
testcase_09 AC 34 ms
52,364 KB
testcase_10 AC 34 ms
52,340 KB
testcase_11 AC 34 ms
52,364 KB
testcase_12 AC 35 ms
52,396 KB
testcase_13 AC 35 ms
52,448 KB
testcase_14 AC 35 ms
53,008 KB
testcase_15 AC 36 ms
52,880 KB
testcase_16 AC 37 ms
52,332 KB
testcase_17 AC 36 ms
51,628 KB
testcase_18 AC 36 ms
52,448 KB
testcase_19 AC 36 ms
53,648 KB
testcase_20 AC 36 ms
52,064 KB
testcase_21 AC 35 ms
51,812 KB
testcase_22 AC 35 ms
52,824 KB
testcase_23 RE -
testcase_24 AC 36 ms
53,100 KB
testcase_25 RE -
testcase_26 AC 36 ms
53,024 KB
testcase_27 AC 35 ms
52,496 KB
testcase_28 AC 34 ms
52,264 KB
testcase_29 RE -
testcase_30 AC 36 ms
51,832 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 38 ms
52,156 KB
testcase_34 AC 36 ms
52,328 KB
testcase_35 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B, N, M = map(int, input().split())
ans = min(A, B)
A-=ans
B-=ans
if A>0:
    x = A//(N+1)
elif B>0:
    x = B//(M+1)
ans += x
print(ans)
0