結果

問題 No.351 市松スライドパズル
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-11-28 16:12:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 788 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 123,392 KB
最終ジャッジ日時 2024-05-05 14:58:32
合計ジャッジ時間 7,515 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=[int(i) for i in input().split()]
N=int(input())
sousas=[]
for i in range(N):
    sousa=input().split()
    sousas.append(sousa)

#init
black=[[False for i in range(W)] for j in range(H)]
for i in range(H):
    offset=(i+1)%2
    for j in range(offset,W,2):
        black[i][j]=True

for sousa in sousas:
    if sousa[0]=='R':
        row=int(sousa[1])
        tmp=black[row][W-1]
        for i in reversed(range(1,W)):
            black[row][i]=black[row][i-1]
        black[row][0]=tmp
    else:
        col=int(sousa[1])
        tmp=black[H-1][col]
        for i in reversed(range(1,H)):
            black[i][col]=black[i-1][col]
        black[0][col]=tmp
    # for i in range(H):
    #     print(black[i])
    # print('\n')
ans='black' if black[0][0]==True else 'white'
print(ans)
0