結果

問題 No.351 市松スライドパズル
ユーザー code-devocode-devo
提出日時 2016-03-12 00:31:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 2,020 ms
コンパイル使用メモリ 77,412 KB
実行使用メモリ 180,828 KB
最終ジャッジ日時 2023-10-25 07:23:56
合計ジャッジ時間 9,362 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
179,520 KB
testcase_01 AC 61 ms
74,480 KB
testcase_02 AC 64 ms
74,452 KB
testcase_03 AC 63 ms
74,452 KB
testcase_04 AC 63 ms
74,460 KB
testcase_05 AC 63 ms
74,460 KB
testcase_06 AC 63 ms
74,456 KB
testcase_07 AC 62 ms
74,456 KB
testcase_08 AC 63 ms
72,408 KB
testcase_09 AC 63 ms
74,432 KB
testcase_10 AC 62 ms
73,384 KB
testcase_11 AC 63 ms
74,464 KB
testcase_12 AC 63 ms
73,348 KB
testcase_13 AC 545 ms
179,384 KB
testcase_14 AC 532 ms
179,688 KB
testcase_15 AC 536 ms
180,276 KB
testcase_16 AC 532 ms
180,544 KB
testcase_17 AC 543 ms
180,816 KB
testcase_18 AC 548 ms
180,828 KB
testcase_19 AC 528 ms
180,776 KB
testcase_20 AC 530 ms
180,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		try (InputStreamReader isr = new InputStreamReader(System.in)) {
			StringBuilder sb = new StringBuilder(20_000_000);

			char[] cbuf = new char[10000];
			int size;
			while ((size = isr.read(cbuf)) >= 0) {
				sb.append(cbuf, 0, size);
			}

			String[] lines = sb.toString().split("\n");
			String[] ary = lines[0].trim().split(" ");
			int h = Integer.parseInt(ary[0]);
			int w = Integer.parseInt(ary[1]);

			int x = 0;
			int y = 0;
			for (int i = lines.length - 1; i >= 2; i--) {
				String line = lines[i].trim();
				int k = Integer.parseInt(line.substring(2));
				if (line.charAt(0) == 'R') {
					if (k == y) {
						x--;
						if (x < 0)
							x = w - 1;
					}
				} else {
					if (k == x) {
						y--;
						if (y < 0)
							y = h - 1;
					}
				}

				// System.err.println(String.format("%s (%d, %d)", line, x, y));
			}

			System.out.println((x + y) % 2 == 0 ? "white" : "black");
		}
	}
}
0