結果

問題 No.149 碁石の移動
ユーザー yagi2yagi2
提出日時 2017-04-24 17:46:26
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 587 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-06-06 12:03:30
合計ジャッジ時間 5,260 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 130 ms
53,960 KB
testcase_03 AC 128 ms
54,048 KB
testcase_04 AC 128 ms
54,040 KB
testcase_05 AC 131 ms
53,956 KB
testcase_06 AC 128 ms
53,924 KB
testcase_07 AC 128 ms
53,772 KB
testcase_08 AC 128 ms
53,916 KB
testcase_09 AC 130 ms
53,916 KB
testcase_10 AC 129 ms
53,708 KB
testcase_11 AC 129 ms
53,880 KB
testcase_12 AC 130 ms
53,904 KB
testcase_13 AC 132 ms
53,812 KB
testcase_14 AC 128 ms
53,908 KB
testcase_15 AC 129 ms
54,064 KB
testcase_16 AC 129 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int Aw = Integer.parseInt(sc.next());
        int Ab = Integer.parseInt(sc.next());
        int Bw = Integer.parseInt(sc.next());
        int Bb = Integer.parseInt(sc.next());

        int C = Integer.parseInt(sc.next());
        int D = Integer.parseInt(sc.next());

        if (Aw+Ab < C*2) {
            Aw -= C - Ab;
            Bw += C - Ab;
        }

        int move = (D > Bw)? Bw : D;

        System.out.println(Aw+move);
    }
}
0