結果

問題 No.1446 ハンバーグと納豆ごはん
ユーザー ApassApass
提出日時 2021-03-31 14:31:14
言語 Java
(openjdk 23)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 3,432 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-12-14 19:11:57
合計ジャッジ時間 9,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class B_HamburgerAndNattoRice {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        long A = sc.nextLong();
        long B = sc.nextLong();
        long N = sc.nextLong();
        long M = sc.nextLong();

        long lunch;
        if (A <= B) {
            long d = B - A;
            lunch = A + d / (M + 1);
        } else {
            long d = A - B;
            lunch = B + d / (N + 1);
        }
        System.out.println(lunch);
    }
}
0