結果

問題 No.149 碁石の移動
ユーザー matsuyoshi30
提出日時 2017-02-16 23:22:38
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 2,053 ms
コンパイル使用メモリ 75,256 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-12-24 03:22:40
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int aw = in.nextInt();
        int ab = in.nextInt();
        int bw = in.nextInt();
        int bb = in.nextInt();
        int c = in.nextInt();
        int d = in.nextInt();

        if(c > ab) {
            aw = aw - (c - ab);
            bw = bw + (c - ab);
        }

        if(d > bw) {
            aw = aw + bw;
        } else {
            aw = aw + d;
        }

        System.out.println(aw);

        in.close();
    }
}
0