結果

問題 No.351 市松スライドパズル
ユーザー YamaKasaYamaKasa
提出日時 2018-09-17 15:28:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,588 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 77,404 KB
実行使用メモリ 141,212 KB
最終ジャッジ日時 2024-07-18 07:41:50
合計ジャッジ時間 20,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,496 ms
141,116 KB
testcase_01 AC 117 ms
41,424 KB
testcase_02 AC 116 ms
41,212 KB
testcase_03 AC 114 ms
40,288 KB
testcase_04 AC 116 ms
41,136 KB
testcase_05 AC 105 ms
39,988 KB
testcase_06 AC 102 ms
39,864 KB
testcase_07 AC 109 ms
41,268 KB
testcase_08 AC 101 ms
40,080 KB
testcase_09 AC 117 ms
41,316 KB
testcase_10 AC 109 ms
40,280 KB
testcase_11 AC 129 ms
41,496 KB
testcase_12 AC 134 ms
41,224 KB
testcase_13 AC 1,545 ms
141,212 KB
testcase_14 AC 1,504 ms
140,860 KB
testcase_15 AC 1,588 ms
140,372 KB
testcase_16 AC 1,588 ms
140,452 KB
testcase_17 AC 1,528 ms
140,400 KB
testcase_18 AC 1,546 ms
140,320 KB
testcase_19 AC 1,446 ms
140,736 KB
testcase_20 AC 1,540 ms
139,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int H = scan.nextInt();
		int W = scan.nextInt();
		int N = scan.nextInt();
		String []S = new String[N];
		int []K = new int[N];
		for(int i = 0; i < N; i++) {
			S[i] = scan.next();
			K[i] = Integer.parseInt(scan.next());
		}
		scan.close();
		int r = 0;
		int c = 0;
		for(int i = N - 1; i >= 0; i--) {
			if(S[i].equals("R") && r == K[i]) {
				if(c == 0) {
					c = W - 1;
				}else {
					c = c - 1;
				}
			}else if(S[i].equals("C") && c == K[i]) {
				if(r == 0) {
					r = H - 1;
				}else {
					r = r - 1;
				}
			}
		}
		if((r + c) % 2 == 0) {
			System.out.println("white");
		}else {
			System.out.println("black");
		}
	}
}
0