結果

問題 No.149 碁石の移動
ユーザー mitsuomitsuo
提出日時 2016-05-05 11:51:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 942 bytes
コンパイル時間 1,914 ms
コンパイル使用メモリ 79,308 KB
実行使用メモリ 41,004 KB
最終ジャッジ日時 2024-06-06 11:57:13
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,408 KB
testcase_01 AC 103 ms
40,932 KB
testcase_02 AC 102 ms
40,748 KB
testcase_03 AC 102 ms
40,040 KB
testcase_04 AC 108 ms
40,948 KB
testcase_05 AC 105 ms
40,776 KB
testcase_06 AC 107 ms
40,900 KB
testcase_07 AC 105 ms
40,584 KB
testcase_08 AC 95 ms
39,788 KB
testcase_09 AC 98 ms
39,716 KB
testcase_10 AC 108 ms
41,004 KB
testcase_11 AC 103 ms
40,940 KB
testcase_12 AC 107 ms
40,784 KB
testcase_13 AC 117 ms
41,000 KB
testcase_14 AC 105 ms
40,720 KB
testcase_15 AC 106 ms
40,520 KB
testcase_16 AC 91 ms
39,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package jp.fedom.challange.yuki.q149;

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {

	final static String d = System.getProperty("line.separator");

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		List<String> input = new ArrayList<>();
		while (sc.hasNext()) {
			input.add(sc.nextLine());
		}

		System.out.println(solve(input));

		sc.close();
	}

	public static int solve(List<String> in) {
		Integer Aw = Integer.valueOf(in.get(0).split(" ")[0]);
		Integer Ab = Integer.valueOf(in.get(0).split(" ")[1]);
		Integer Bw = Integer.valueOf(in.get(1).split(" ")[0]);
		Integer Bb = Integer.valueOf(in.get(1).split(" ")[1]);
		Integer C = Integer.valueOf(in.get(2).split(" ")[0]);
		Integer D = Integer.valueOf(in.get(2).split(" ")[1]);

		int mo = Math.min(Ab, C);
		Bw += C - mo;
		Aw -= C - mo;

		mo = Math.min(Bw, D);
		Aw += mo;

		return Aw;

	}

}
0