結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー miya145592miya145592
提出日時 2023-05-09 00:41:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 140 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 66,780 KB
最終ジャッジ日時 2024-05-04 06:05:28
合計ジャッジ時間 3,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,492 KB
testcase_01 AC 37 ms
52,836 KB
testcase_02 AC 38 ms
52,152 KB
testcase_03 AC 36 ms
52,036 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 37 ms
52,612 KB
testcase_07 AC 38 ms
51,812 KB
testcase_08 AC 37 ms
52,152 KB
testcase_09 AC 36 ms
53,352 KB
testcase_10 AC 37 ms
51,980 KB
testcase_11 AC 37 ms
52,920 KB
testcase_12 AC 37 ms
53,796 KB
testcase_13 AC 38 ms
52,320 KB
testcase_14 AC 36 ms
52,708 KB
testcase_15 AC 40 ms
52,492 KB
testcase_16 AC 36 ms
52,948 KB
testcase_17 AC 36 ms
53,012 KB
testcase_18 AC 38 ms
52,244 KB
testcase_19 AC 37 ms
52,328 KB
testcase_20 AC 37 ms
52,440 KB
testcase_21 AC 39 ms
52,776 KB
testcase_22 AC 37 ms
54,096 KB
testcase_23 RE -
testcase_24 AC 37 ms
52,696 KB
testcase_25 RE -
testcase_26 AC 37 ms
51,748 KB
testcase_27 AC 38 ms
52,088 KB
testcase_28 AC 38 ms
52,824 KB
testcase_29 RE -
testcase_30 AC 37 ms
52,200 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 AC 37 ms
52,768 KB
testcase_34 AC 37 ms
52,488 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