結果

問題 No.351 市松スライドパズル
ユーザー htensaihtensai
提出日時 2019-11-21 17:01:41
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,663 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 75,112 KB
実行使用メモリ 64,352 KB
最終ジャッジ日時 2024-10-10 05:43:42
合計ジャッジ時間 22,155 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,590 ms
64,100 KB
testcase_01 AC 124 ms
41,276 KB
testcase_02 AC 128 ms
41,164 KB
testcase_03 AC 126 ms
40,876 KB
testcase_04 AC 125 ms
41,536 KB
testcase_05 AC 125 ms
41,440 KB
testcase_06 AC 128 ms
41,304 KB
testcase_07 AC 128 ms
41,036 KB
testcase_08 AC 122 ms
41,072 KB
testcase_09 AC 128 ms
41,516 KB
testcase_10 AC 115 ms
41,580 KB
testcase_11 AC 139 ms
41,172 KB
testcase_12 AC 140 ms
41,808 KB
testcase_13 AC 1,663 ms
63,784 KB
testcase_14 AC 1,663 ms
64,240 KB
testcase_15 AC 1,661 ms
64,352 KB
testcase_16 AC 1,627 ms
64,000 KB
testcase_17 AC 1,616 ms
57,444 KB
testcase_18 AC 1,597 ms
57,256 KB
testcase_19 AC 1,604 ms
64,200 KB
testcase_20 AC 1,621 ms
64,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
 	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextInt();
		int w = sc.nextInt();
		int n = sc.nextInt();
		char[] types = new char[n];
		int[] idxes = new int[n];
		for (int i = 0; i < n; i++) {
		    types[i] = sc.next().charAt(0);
		    idxes[i] = sc.nextInt();
		}
		int r = 0;
		int c = 0;
		for (int i = n - 1; i >= 0; i--) {
		    if (types[i] == 'R') {
		        if (idxes[i] == r) {
		            c = (c + w - 1) % w;
		        }
		    } else {
		        if (idxes[i] == c) {
		            r = (r + h - 1) % h;
		        }
		    }
		}
		if (c % 2 == 0 ^ r % 2 == 0) {
		    System.out.println("black");
		} else {
		    System.out.println("white");
		}
	}
}
0