結果

問題 No.149 碁石の移動
コンテスト
ユーザー matsuyoshi30
提出日時 2017-02-16 23:22:38
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 654 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,898 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 43,480 KB
最終ジャッジ日時 2026-05-29 23:06:52
合計ジャッジ時間 3,625 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge4_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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