結果

問題 No.149 碁石の移動
ユーザー haruki_57haruki_57
提出日時 2015-02-14 12:12:52
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 4,154 ms
コンパイル使用メモリ 75,116 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-12-24 02:51:07
合計ジャッジ時間 7,488 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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