結果

問題 No.351 市松スライドパズル
ユーザー TatsuDXTatsuDX
提出日時 2016-10-16 20:54:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,905 ms / 2,000 ms
コード長 669 bytes
コンパイル時間 3,832 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 64,520 KB
最終ジャッジ日時 2024-11-22 12:15:58
合計ジャッジ時間 25,213 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,652 ms
63,860 KB
testcase_01 AC 154 ms
41,004 KB
testcase_02 AC 131 ms
41,236 KB
testcase_03 AC 133 ms
41,216 KB
testcase_04 AC 129 ms
41,300 KB
testcase_05 AC 131 ms
41,052 KB
testcase_06 AC 134 ms
40,988 KB
testcase_07 AC 133 ms
41,036 KB
testcase_08 AC 131 ms
41,196 KB
testcase_09 AC 133 ms
41,232 KB
testcase_10 AC 133 ms
41,140 KB
testcase_11 AC 143 ms
41,624 KB
testcase_12 AC 143 ms
41,620 KB
testcase_13 AC 1,644 ms
64,364 KB
testcase_14 AC 1,789 ms
64,260 KB
testcase_15 AC 1,905 ms
64,276 KB
testcase_16 AC 1,749 ms
64,336 KB
testcase_17 AC 1,781 ms
64,520 KB
testcase_18 AC 1,765 ms
63,716 KB
testcase_19 AC 1,685 ms
64,140 KB
testcase_20 AC 1,634 ms
63,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int h = sc.nextInt(), w = sc.nextInt(), n = sc.nextInt();
		int x = 0, y = 0;
		int[] m = new int[n];
		char[] c = new char[n];
		for(int i = 0; i < n; i++){
			c[i] = sc.next().charAt(0);
			m[i] = sc.nextInt();
		}
		for(int i = n-1; i >= 0; i--){
			if(y == m[i] && c[i] == 'R'){
				x--;
				if(x < 0){
					x += w;
				}
			} else if(x == m[i] && c[i] == 'C'){
				y--;
				if(y < 0){
					y += h;
				}
			}
		}
		if((x + y) % 2 == 0){
			System.out.println("white");
		} else {
			System.out.println("black");
		}
	}
}
0