結果

問題 No.351 市松スライドパズル
ユーザー htensaihtensai
提出日時 2019-11-21 17:10:34
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 992 bytes
コンパイル時間 2,711 ms
コンパイル使用メモリ 77,208 KB
実行使用メモリ 61,068 KB
最終ジャッジ日時 2024-10-10 06:55:57
合計ジャッジ時間 8,232 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
60,916 KB
testcase_01 AC 56 ms
50,308 KB
testcase_02 AC 55 ms
49,992 KB
testcase_03 AC 56 ms
50,300 KB
testcase_04 AC 55 ms
50,312 KB
testcase_05 AC 55 ms
50,104 KB
testcase_06 AC 55 ms
50,404 KB
testcase_07 AC 57 ms
50,020 KB
testcase_08 AC 55 ms
50,284 KB
testcase_09 AC 55 ms
50,308 KB
testcase_10 AC 57 ms
50,256 KB
testcase_11 WA -
testcase_12 AC 55 ms
50,268 KB
testcase_13 AC 378 ms
60,200 KB
testcase_14 AC 379 ms
60,660 KB
testcase_15 AC 374 ms
61,068 KB
testcase_16 AC 388 ms
60,836 KB
testcase_17 AC 382 ms
60,644 KB
testcase_18 AC 373 ms
60,556 KB
testcase_19 AC 385 ms
60,208 KB
testcase_20 AC 399 ms
60,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
 	public static void main (String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] first = br.readLine().split(" ", 2);
		int h = Integer.parseInt(first[0]);
		int w = Integer.parseInt(first[0]);
		int n = Integer.parseInt(br.readLine());
		boolean[] isR = new boolean[n];
		int[] idxes = new int[n];
		for (int i = 0; i < n; i++) {
		    String line = br.readLine();
		    isR[i] = line.charAt(0) == 'R';
		    idxes[i] = Integer.parseInt(line.substring(2, line.length()));
		}
		int r = 0;
		int c = 0;
		for (int i = n - 1; i >= 0; i--) {
		    if (isR[i]) {
		        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