結果

問題 No.351 市松スライドパズル
ユーザー code-devocode-devo
提出日時 2016-03-12 01:55:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,665 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 2,095 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 74,344 KB
最終ジャッジ日時 2024-09-25 01:48:40
合計ジャッジ時間 20,541 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,548 ms
74,044 KB
testcase_01 AC 124 ms
54,212 KB
testcase_02 AC 124 ms
54,328 KB
testcase_03 AC 128 ms
53,972 KB
testcase_04 AC 127 ms
54,476 KB
testcase_05 AC 125 ms
53,996 KB
testcase_06 AC 126 ms
54,224 KB
testcase_07 AC 127 ms
54,012 KB
testcase_08 AC 126 ms
54,108 KB
testcase_09 AC 117 ms
53,068 KB
testcase_10 AC 130 ms
54,124 KB
testcase_11 AC 134 ms
54,220 KB
testcase_12 AC 137 ms
54,460 KB
testcase_13 AC 1,647 ms
74,040 KB
testcase_14 AC 1,614 ms
73,976 KB
testcase_15 AC 1,665 ms
74,344 KB
testcase_16 AC 1,608 ms
73,888 KB
testcase_17 AC 1,474 ms
66,980 KB
testcase_18 AC 1,543 ms
74,028 KB
testcase_19 AC 1,484 ms
73,752 KB
testcase_20 AC 1,492 ms
73,884 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 = (x - 1 + w) % w;
					}
				} else {
					if (ks[i] == x) {
						y = (y - 1 + h) % h;
					}
				}

				// 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