結果

問題 No.149 碁石の移動
ユーザー haruki_57haruki_57
提出日時 2015-02-14 12:12:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 3,316 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-06-06 11:38:36
合計ジャッジ時間 5,730 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,984 KB
testcase_01 AC 110 ms
53,652 KB
testcase_02 AC 107 ms
53,852 KB
testcase_03 AC 96 ms
52,556 KB
testcase_04 AC 109 ms
53,912 KB
testcase_05 AC 119 ms
54,076 KB
testcase_06 AC 116 ms
53,960 KB
testcase_07 AC 95 ms
52,456 KB
testcase_08 AC 98 ms
52,812 KB
testcase_09 AC 99 ms
52,736 KB
testcase_10 AC 109 ms
53,976 KB
testcase_11 AC 100 ms
52,508 KB
testcase_12 AC 97 ms
52,572 KB
testcase_13 AC 110 ms
53,908 KB
testcase_14 AC 111 ms
52,720 KB
testcase_15 AC 100 ms
52,732 KB
testcase_16 AC 115 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class GO {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int aw,ab,bw,bb,c,d;
        aw = sc.nextInt();
        ab = sc.nextInt();
        bw = sc.nextInt();
        bb = sc.nextInt();
        c = sc.nextInt();
        d = sc.nextInt();
        if(ab >= c){
            ab -= c;
            bb += c;
        } else {
            aw -= (c-ab);
            bw += (c-ab);
            bb += ab;
            ab = 0;
        }
        
        System.out.println(aw + Math.min(d, bw));
    }

}
0