結果

問題 No.149 碁石の移動
ユーザー koukonkokoukonko
提出日時 2015-12-13 00:45:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 37,008 KB
最終ジャッジ日時 2024-06-06 11:54:44
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,764 KB
testcase_01 AC 47 ms
36,764 KB
testcase_02 AC 45 ms
36,772 KB
testcase_03 AC 47 ms
36,656 KB
testcase_04 AC 47 ms
36,776 KB
testcase_05 AC 45 ms
37,008 KB
testcase_06 AC 48 ms
36,312 KB
testcase_07 AC 49 ms
36,648 KB
testcase_08 AC 49 ms
36,684 KB
testcase_09 AC 46 ms
36,308 KB
testcase_10 AC 48 ms
36,308 KB
testcase_11 AC 48 ms
36,312 KB
testcase_12 AC 47 ms
36,644 KB
testcase_13 AC 48 ms
36,536 KB
testcase_14 AC 48 ms
36,744 KB
testcase_15 AC 48 ms
36,748 KB
testcase_16 AC 46 ms
36,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader read = new BufferedReader(new InputStreamReader(System.in));
		try {
			String[] abox = read.readLine().split(" ");
			String[] bbox = read.readLine().split(" ");
			String[] cbox = read.readLine().split(" ");
			int[] a = new int[2];
			int[] b = new int[2];
			int[] c = new int[2];

			for (int i = 0; i < 2; ++i) {
				a[i] = Integer.parseInt(abox[i]);
				b[i] = Integer.parseInt(bbox[i]);
				c[i] = Integer.parseInt(cbox[i]);
			}

			if (a[1] - c[0] < 0) {
				b[0] += Math.abs(a[1] - c[0]);
				a[0] += a[1] - c[0];
			}

			if (b[0] - c[1] < 0) {
				a[0] += b[0];
			} else {
				a[0] += c[1];
			}

			System.out.println(a[0]);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
}
0