結果

問題 No.149 碁石の移動
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:01:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 394 bytes
コンパイル時間 3,508 ms
コンパイル使用メモリ 73,948 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-06-06 12:00:46
合計ジャッジ時間 6,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,388 KB
testcase_01 AC 122 ms
41,088 KB
testcase_02 AC 120 ms
41,508 KB
testcase_03 AC 117 ms
41,236 KB
testcase_04 AC 126 ms
41,020 KB
testcase_05 AC 113 ms
40,048 KB
testcase_06 AC 120 ms
41,040 KB
testcase_07 AC 110 ms
40,312 KB
testcase_08 AC 124 ms
41,096 KB
testcase_09 AC 126 ms
41,112 KB
testcase_10 AC 123 ms
41,248 KB
testcase_11 AC 117 ms
41,284 KB
testcase_12 AC 120 ms
40,944 KB
testcase_13 AC 123 ms
41,124 KB
testcase_14 AC 110 ms
39,856 KB
testcase_15 AC 107 ms
39,836 KB
testcase_16 AC 122 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int aw, ab, bw, bb, x, y;
		aw = sc.nextInt();
		ab = sc.nextInt();
		bw = sc.nextInt();
		bb = sc.nextInt();
		x = sc.nextInt();
		y = sc.nextInt();
		bw += Math.max(0, x - ab);
		aw -= Math.max(0, x - ab);
		aw += Math.min(y, bw);
		System.out.println(aw);
	}
}
0