結果

問題 No.351 市松スライドパズル
ユーザー takakintakakin
提出日時 2020-06-10 23:55:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 873 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 328,108 KB
最終ジャッジ日時 2024-06-23 19:54:00
合計ジャッジ時間 11,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 821 ms
328,108 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 38 ms
51,840 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 38 ms
52,116 KB
testcase_10 AC 37 ms
52,140 KB
testcase_11 AC 39 ms
52,204 KB
testcase_12 AC 38 ms
52,184 KB
testcase_13 AC 845 ms
318,456 KB
testcase_14 AC 851 ms
323,600 KB
testcase_15 AC 873 ms
325,456 KB
testcase_16 AC 872 ms
325,248 KB
testcase_17 AC 834 ms
325,252 KB
testcase_18 AC 850 ms
325,272 KB
testcase_19 AC 859 ms
325,376 KB
testcase_20 AC 853 ms
325,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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