結果

問題 No.149 碁石の移動
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-02-16 23:22:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 41,124 KB
最終ジャッジ日時 2024-06-06 12:02:26
合計ジャッジ時間 4,707 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,100 KB
testcase_01 AC 118 ms
40,856 KB
testcase_02 AC 104 ms
39,940 KB
testcase_03 AC 114 ms
40,884 KB
testcase_04 AC 110 ms
40,876 KB
testcase_05 AC 103 ms
40,100 KB
testcase_06 AC 110 ms
40,140 KB
testcase_07 AC 120 ms
40,904 KB
testcase_08 AC 124 ms
41,104 KB
testcase_09 AC 128 ms
41,032 KB
testcase_10 AC 125 ms
40,952 KB
testcase_11 AC 121 ms
40,836 KB
testcase_12 AC 117 ms
40,872 KB
testcase_13 AC 119 ms
40,608 KB
testcase_14 AC 118 ms
41,124 KB
testcase_15 AC 112 ms
40,756 KB
testcase_16 AC 121 ms
40,872 KB
権限があれば一括ダウンロードができます

ソースコード

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