結果

問題 No.351 市松スライドパズル
ユーザー takakintakakin
提出日時 2020-06-10 23:59:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 274,228 KB
最終ジャッジ日時 2024-06-23 19:58:38
合計ジャッジ時間 10,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 710 ms
273,668 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 36 ms
51,944 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 41 ms
52,352 KB
testcase_13 AC 624 ms
258,364 KB
testcase_14 AC 632 ms
258,700 KB
testcase_15 AC 734 ms
273,480 KB
testcase_16 AC 742 ms
273,640 KB
testcase_17 AC 731 ms
273,788 KB
testcase_18 AC 724 ms
274,116 KB
testcase_19 AC 722 ms
273,740 KB
testcase_20 AC 721 ms
274,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
h,w=map(int,input().split())
n=int(input())
S=[tuple(input().split()) for _ in range(n)]
x,y=0,0
for s,k in S[::-1]:
  if s=="R" and x==int(k):
    y-=1
    if y<0:
      y+=w
  if s=="C" and y==int(k):
    x-=1
    if x<0:
      x+=h
if (x+y)%2==0:
  print("white")
else:
  print("black")
0