結果

問題 No.149 碁石の移動
ユーザー ぴろずぴろず
提出日時 2015-02-12 23:26:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 1,925 ms
コンパイル使用メモリ 74,516 KB
実行使用メモリ 54,076 KB
最終ジャッジ日時 2024-06-06 11:33:52
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
52,624 KB
testcase_01 AC 97 ms
52,748 KB
testcase_02 AC 100 ms
52,796 KB
testcase_03 AC 108 ms
53,976 KB
testcase_04 AC 104 ms
52,692 KB
testcase_05 AC 107 ms
52,956 KB
testcase_06 AC 112 ms
53,972 KB
testcase_07 AC 101 ms
54,020 KB
testcase_08 AC 115 ms
53,620 KB
testcase_09 AC 101 ms
52,488 KB
testcase_10 AC 111 ms
53,848 KB
testcase_11 AC 111 ms
53,824 KB
testcase_12 AC 109 ms
53,808 KB
testcase_13 AC 123 ms
53,880 KB
testcase_14 AC 109 ms
54,076 KB
testcase_15 AC 110 ms
54,020 KB
testcase_16 AC 108 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no149;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int aw = sc.nextInt();
		int ab = sc.nextInt();
		int bw = sc.nextInt();
		int bb = sc.nextInt();
		int c = sc.nextInt();
		int d = sc.nextInt();

		int db = Math.min(ab, c);
		aw -= (c - db);
		bw += (c - db);
		ab -= db;
		bb += db;

		int dw = Math.min(bw, d);
		bw -= dw;
		aw += dw;
		System.out.println(aw);
	}

}
0