結果

問題 No.351 市松スライドパズル
ユーザー %20%20
提出日時 2018-05-28 17:34:26
言語 Perl
(5.38.2)
結果
AC  
実行時間 936 ms / 2,000 ms
コード長 173 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 6,812 KB
実行使用メモリ 154,112 KB
最終ジャッジ日時 2024-06-30 07:48:14
合計ジャッジ時間 11,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 936 ms
153,984 KB
testcase_01 AC 7 ms
6,940 KB
testcase_02 AC 7 ms
6,944 KB
testcase_03 AC 7 ms
6,944 KB
testcase_04 AC 7 ms
6,944 KB
testcase_05 AC 7 ms
6,944 KB
testcase_06 AC 7 ms
6,944 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 765 ms
150,656 KB
testcase_14 AC 774 ms
151,552 KB
testcase_15 AC 784 ms
153,856 KB
testcase_16 AC 801 ms
153,984 KB
testcase_17 AC 899 ms
154,112 KB
testcase_18 AC 891 ms
153,984 KB
testcase_19 AC 770 ms
153,984 KB
testcase_20 AC 782 ms
153,984 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Unquoted string "black" may clash with future reserved word at Main.pl line 15.
Unquoted string "white" may clash with future reserved word at Main.pl line 15.
Main.pl syntax OK

ソースコード

diff #

($H,$W)=glob<>;
<>;
for(reverse<>){
	($S,$K)=split;
	if($S eq'R'){
		if($K==$y){
			$x=($x-1)%$W
		}
	}else{
		if($K==$x){
			$y=($y-1)%$H
		}
	}
}
print$x+$y&1?black:white
0