結果

問題 No.149 碁石の移動
ユーザー marumaru
提出日時 2016-03-23 20:02:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 3,439 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 54,164 KB
最終ジャッジ日時 2024-06-06 11:56:31
合計ジャッジ時間 5,392 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
53,900 KB
testcase_01 AC 118 ms
54,164 KB
testcase_02 AC 101 ms
52,556 KB
testcase_03 AC 117 ms
53,960 KB
testcase_04 AC 116 ms
53,872 KB
testcase_05 AC 122 ms
54,160 KB
testcase_06 AC 111 ms
54,020 KB
testcase_07 AC 101 ms
52,608 KB
testcase_08 AC 102 ms
52,824 KB
testcase_09 AC 113 ms
53,844 KB
testcase_10 AC 107 ms
53,516 KB
testcase_11 AC 111 ms
53,916 KB
testcase_12 AC 115 ms
53,824 KB
testcase_13 AC 112 ms
53,916 KB
testcase_14 AC 111 ms
53,864 KB
testcase_15 AC 115 ms
54,076 KB
testcase_16 AC 111 ms
52,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class yukicoder_149 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		int aw = stdIn.nextInt();
		int ab = stdIn.nextInt();
		int bw = stdIn.nextInt();
		int bb = stdIn.nextInt();
		int c = stdIn.nextInt();
		int d = stdIn.nextInt();
		
		if (c <= ab) {
			bb += c;
			ab -= c;
		} else {
			bb += ab;
			bw += c - ab;
			aw -= c - ab;
			ab = 0;
		}
		
		if (d <= bw) {
			aw += d;
			bw -= d;
		} else {
			aw += bw;
			ab += d - bw;
			bb -= d - bw;
			bw = 0;
		}
		
		System.out.println(aw);
	}
}
0