結果

問題 No.351 市松スライドパズル
ユーザー code-devocode-devo
提出日時 2016-03-12 00:11:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 879 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 162,564 KB
最終ジャッジ日時 2024-09-25 02:40:57
合計ジャッジ時間 12,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 760 ms
154,984 KB
testcase_01 AC 54 ms
50,308 KB
testcase_02 AC 53 ms
49,992 KB
testcase_03 AC 54 ms
50,244 KB
testcase_04 AC 53 ms
50,292 KB
testcase_05 AC 53 ms
50,136 KB
testcase_06 AC 53 ms
49,872 KB
testcase_07 AC 53 ms
49,812 KB
testcase_08 AC 53 ms
50,172 KB
testcase_09 AC 53 ms
49,872 KB
testcase_10 AC 53 ms
50,256 KB
testcase_11 AC 53 ms
50,296 KB
testcase_12 AC 54 ms
50,308 KB
testcase_13 AC 859 ms
162,564 KB
testcase_14 AC 854 ms
161,120 KB
testcase_15 AC 867 ms
161,996 KB
testcase_16 AC 865 ms
161,976 KB
testcase_17 AC 878 ms
161,956 KB
testcase_18 AC 879 ms
162,028 KB
testcase_19 AC 861 ms
161,992 KB
testcase_20 AC 855 ms
162,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// JavaでTLE叩き出して恥ずかしい。

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();

			char[] cbuf = new char[4000];
			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--) {
				ary = lines[i].trim().split(" ");
				String s = ary[0];
				int k = Integer.parseInt(ary[1]);
				if ("R".equals(s) && k == y) {
					x--;
					if (x < 0)
						x = w - 1;
				} else if ("C".equals(s) && k == x) {
					y--;
					if (y < 0)
						y = h - 1;
				}
				
//				System.err.println(String.format("%s %d (%d, %d)", s, k, x, y));
			}

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