結果

問題 No.351 市松スライドパズル
ユーザー furafura
提出日時 2020-05-07 02:50:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 204,128 KB
実行使用メモリ 8,256 KB
最終ジャッジ日時 2024-07-03 09:16:21
合計ジャッジ時間 5,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
8,200 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 116 ms
7,924 KB
testcase_14 AC 121 ms
8,168 KB
testcase_15 AC 123 ms
8,208 KB
testcase_16 AC 125 ms
8,120 KB
testcase_17 AC 115 ms
8,056 KB
testcase_18 AC 117 ms
8,256 KB
testcase_19 AC 123 ms
8,172 KB
testcase_20 AC 115 ms
8,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int h,w,n; scanf("%d%d%d",&h,&w,&n);
	vector<char> type(n);
	vector<int> pos(n);
	rep(i,n) scanf(" %c%d",&type[i],&pos[i]);

	int x=0,y=0;
	for(int i=n-1;i>=0;i--){
		if(type[i]=='R'){
			if(pos[i]==y) x=(x+w-1)%w;
		}else{
			if(pos[i]==x) y=(y+h-1)%h;
		}
	}
	puts((x+y)%2==0?"white":"black");

	return 0;
}
0