結果

問題 No.149 碁石の移動
ユーザー ffmm00ffmm00
提出日時 2015-06-10 20:22:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 2,959 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-06-06 11:49:42
合計ジャッジ時間 5,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,908 KB
testcase_01 AC 123 ms
54,040 KB
testcase_02 AC 114 ms
53,800 KB
testcase_03 AC 119 ms
54,004 KB
testcase_04 AC 116 ms
53,988 KB
testcase_05 AC 105 ms
52,652 KB
testcase_06 AC 117 ms
53,944 KB
testcase_07 AC 108 ms
53,524 KB
testcase_08 AC 99 ms
52,688 KB
testcase_09 AC 116 ms
53,756 KB
testcase_10 AC 105 ms
52,640 KB
testcase_11 AC 116 ms
54,052 KB
testcase_12 AC 107 ms
52,784 KB
testcase_13 AC 127 ms
54,192 KB
testcase_14 AC 119 ms
54,144 KB
testcase_15 AC 106 ms
53,576 KB
testcase_16 AC 118 ms
52,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N149 {

	public static void main(String[] args) {

		Scanner sca = new Scanner(System.in);
		int Aw = sca.nextInt();
		int Ab = sca.nextInt();
		int Bw = sca.nextInt();
		int Bb = sca.nextInt();
		int c = sca.nextInt();
		int d = sca.nextInt();

		if (Ab < c) {
			Aw = Aw - (c - Ab);
			Bw = Bw + (c - Ab);
		}

		if (Bw > d)
			Aw += d;
		else
			Aw += Bw;

		System.out.println(Aw);

	}

}
0