結果

問題 No.351 市松スライドパズル
ユーザー code-devocode-devo
提出日時 2016-03-12 01:52:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,717 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 2,690 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 63,680 KB
最終ジャッジ日時 2024-09-25 01:47:29
合計ジャッジ時間 21,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,537 ms
63,192 KB
testcase_01 AC 127 ms
41,244 KB
testcase_02 AC 127 ms
41,440 KB
testcase_03 AC 129 ms
41,324 KB
testcase_04 AC 112 ms
41,468 KB
testcase_05 AC 127 ms
41,360 KB
testcase_06 AC 115 ms
40,516 KB
testcase_07 AC 114 ms
41,568 KB
testcase_08 AC 124 ms
41,440 KB
testcase_09 AC 113 ms
40,168 KB
testcase_10 AC 118 ms
40,296 KB
testcase_11 AC 138 ms
41,892 KB
testcase_12 AC 136 ms
41,380 KB
testcase_13 AC 1,492 ms
56,548 KB
testcase_14 AC 1,637 ms
63,132 KB
testcase_15 AC 1,676 ms
63,680 KB
testcase_16 AC 1,474 ms
60,492 KB
testcase_17 AC 1,629 ms
62,972 KB
testcase_18 AC 1,609 ms
63,160 KB
testcase_19 AC 1,608 ms
63,224 KB
testcase_20 AC 1,717 ms
63,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// http://yukicoder.me/submissions/81063 を参考に、Scannerで再度書いてみる。

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		try (Scanner sc = new Scanner(System.in)) {
			int h = sc.nextInt();
			int w = sc.nextInt();
			int n = sc.nextInt();
			boolean[] rs = new boolean[n];
			int[] ks = new int[n];

			for (int i = 0; i < n; i++) {
				rs[i] = sc.next().charAt(0) == 'R';
				ks[i] = sc.nextInt();
			}

			int x = 0;
			int y = 0;
			for (int i = n - 1; i >= 0; i--) {
				if (rs[i]) {
					if (ks[i] == y) {
						x--;
						if (x < 0)
							x = w - 1;
					}
				} else {
					if (ks[i] == x) {
						y--;
						if (y < 0)
							y = h - 1;
					}
				}

				// System.err.println(String.format("%b %d (%d, %d)", rs[i], ks[i], x, y));
			}

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