結果

問題 No.351 市松スライドパズル
ユーザー code-devocode-devo
提出日時 2016-03-13 04:09:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 1,492 bytes
コンパイル時間 2,114 ms
コンパイル使用メモリ 76,964 KB
実行使用メモリ 65,828 KB
最終ジャッジ日時 2023-10-25 07:38:10
合計ジャッジ時間 5,330 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
64,788 KB
testcase_01 AC 57 ms
59,188 KB
testcase_02 AC 56 ms
59,196 KB
testcase_03 AC 54 ms
59,184 KB
testcase_04 AC 56 ms
59,180 KB
testcase_05 AC 55 ms
58,108 KB
testcase_06 AC 56 ms
59,124 KB
testcase_07 AC 56 ms
59,180 KB
testcase_08 AC 56 ms
59,188 KB
testcase_09 AC 57 ms
58,216 KB
testcase_10 AC 56 ms
59,180 KB
testcase_11 AC 55 ms
59,188 KB
testcase_12 AC 55 ms
59,180 KB
testcase_13 AC 121 ms
65,568 KB
testcase_14 AC 121 ms
65,496 KB
testcase_15 AC 120 ms
65,712 KB
testcase_16 AC 119 ms
63,824 KB
testcase_17 AC 121 ms
65,828 KB
testcase_18 AC 116 ms
65,752 KB
testcase_19 AC 121 ms
64,508 KB
testcase_20 AC 127 ms
65,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.io.InputStream;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int h = sc.nextPositiveInteger();
		int w = sc.nextPositiveInteger();
		int n = sc.nextPositiveInteger();
		boolean[] rs = new boolean[n];
		int[] ks = new int[n];

		for (int i = 0; i < n; i++) {
			rs[i] = sc.nextChar() == 'R';
			ks[i] = sc.nextPositiveInteger();
		}

		int x = 0;
		int y = 0;
		for (int i = n - 1; i >= 0; i--) {
			if (rs[i]) {
				if (ks[i] == y) {
					x--;
					if (x < 0)
						x = w - 1;
				}
			} else {
				if (ks[i] == x) {
					y--;
					if (y < 0)
						y = h - 1;
				}
			}
		}

		System.out.println((x + y) % 2 == 0 ? "white" : "black");
	}
}

class Scanner {
	private byte[] buf = new byte[8192000];
	private int size;
	private int idx;

	private InputStream is;

	public Scanner(InputStream is) {
		this.is = is;
	}

	private byte readByte() throws IOException {
		while (idx >= size) {
			size = is.read(buf);
			idx = 0;
		}
		return buf[idx++];
	}

	public int nextPositiveInteger() throws IOException {
		byte b = readByte();
		while (!('0' <= b && b <= '9')) {
			b = readByte();
		}

		int num = 0;
		do {
			num = num * 10 + (b - '0');
			b = readByte();
		} while ('0' <= b && b <= '9');
		return num;
	}

	public char nextChar() throws IOException {
		byte b = readByte();
		while (b == ' ' || b == '\n' || b == '\r') {
			b = readByte();
		}
		return (char) b;
	}
}
0