結果

問題 No.351 市松スライドパズル
ユーザー pluto77pluto77
提出日時 2018-02-10 08:48:02
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 829 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 1,707 ms
コンパイル使用メモリ 76,552 KB
実行使用メモリ 254,000 KB
最終ジャッジ日時 2024-10-12 00:09:03
合計ジャッジ時間 12,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 680 ms
222,632 KB
testcase_01 AC 72 ms
75,564 KB
testcase_02 AC 73 ms
75,820 KB
testcase_03 AC 74 ms
75,552 KB
testcase_04 AC 72 ms
75,292 KB
testcase_05 AC 73 ms
75,284 KB
testcase_06 AC 72 ms
75,556 KB
testcase_07 AC 73 ms
75,408 KB
testcase_08 AC 73 ms
75,268 KB
testcase_09 AC 72 ms
75,412 KB
testcase_10 AC 72 ms
75,696 KB
testcase_11 AC 76 ms
75,424 KB
testcase_12 AC 75 ms
75,692 KB
testcase_13 AC 808 ms
252,748 KB
testcase_14 AC 806 ms
252,820 KB
testcase_15 AC 826 ms
253,752 KB
testcase_16 AC 824 ms
253,700 KB
testcase_17 AC 796 ms
251,408 KB
testcase_18 AC 811 ms
248,820 KB
testcase_19 AC 816 ms
253,672 KB
testcase_20 AC 829 ms
254,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki351

H,W=map(int,raw_input().split())
n=int(raw_input())
s=[];k=[]
for i in xrange(n):
 s1,k1=map(str,raw_input().split())
 s.append(s1)
 k.append(int(k1))
r=0;c=0
for i in xrange(n-1,-1,-1):
 if s[i]=='R':
  if k[i]==r:
   c=(c+W-1)%W
 else:
  if k[i]==c:
   r=(r+H-1)%H
if (r+c)%2:
 print 'black'
else:
 print 'white'
0