結果

問題 No.149 碁石の移動
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-01 23:24:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 41,408 KB
最終ジャッジ日時 2024-06-07 17:40:00
合計ジャッジ時間 5,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,372 KB
testcase_01 AC 120 ms
40,908 KB
testcase_02 AC 121 ms
41,084 KB
testcase_03 AC 122 ms
41,408 KB
testcase_04 AC 123 ms
41,028 KB
testcase_05 AC 120 ms
41,404 KB
testcase_06 AC 122 ms
41,308 KB
testcase_07 AC 119 ms
41,032 KB
testcase_08 AC 126 ms
41,272 KB
testcase_09 AC 122 ms
40,944 KB
testcase_10 AC 119 ms
40,008 KB
testcase_11 AC 120 ms
41,068 KB
testcase_12 AC 122 ms
41,104 KB
testcase_13 AC 125 ms
41,176 KB
testcase_14 AC 121 ms
40,892 KB
testcase_15 AC 123 ms
41,332 KB
testcase_16 AC 118 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		//入力
		Box A = new Box(sc.nextInt(),sc.nextInt());
		Box B = new Box(sc.nextInt(),sc.nextInt());
		int c = sc.nextInt();
		int d = sc.nextInt();
		
		//動作1
		if (c > A.black) {
			B.white += c - A.black;
			A.white -= c - A.black;
			B.black += A.black;
			A.black = 0;
			
		}
		else {
			B.black += c;
			A.black -= c;
		}
		
		//動作2
		if (d > B.white) {
			A.black += d - B.white;
			B.black -= d - B.white;
			A.white += B.white;
			B.white = 0;
		}
		else {
			A.white += d;
			B.white -= d;
		}
		
		//出力
		out.println(A.white);
	}
}

class Box {
	int white;
	int black;
	Box (int a, int b) {
		this.white = a;
		this.black = b;
	}
}
0