結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 133 ms
46,032 KB
testcase_03 AC 136 ms
45,864 KB
testcase_04 AC 135 ms
47,876 KB
testcase_05 AC 137 ms
46,048 KB
testcase_06 AC 133 ms
45,848 KB
testcase_07 AC 136 ms
45,988 KB
testcase_08 AC 136 ms
45,992 KB
testcase_09 AC 138 ms
46,288 KB
testcase_10 AC 141 ms
46,116 KB
testcase_11 AC 139 ms
46,028 KB
testcase_12 AC 140 ms
45,956 KB
testcase_13 AC 136 ms
46,136 KB
testcase_14 AC 120 ms
45,044 KB
testcase_15 AC 136 ms
46,064 KB
testcase_16 AC 134 ms
45,916 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