結果
問題 | No.351 市松スライドパズル |
ユーザー | aka_satana_ha |
提出日時 | 2017-11-28 16:27:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 894 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 123,392 KB |
最終ジャッジ日時 | 2024-05-05 14:58:39 |
合計ジャッジ時間 | 7,009 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 | -- | - |
ソースコード
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 now_pos=[0,0] for sousa in reversed(sousas): if sousa[0]=='R': row=int(sousa[1]) if now_pos[0]==row: if now_pos[1]==0: now_pos=[now_pos[0],W-1] else: now_pos=[now_pos[0],now_pos[1]-1] else: col=int(sousa[1]) if now_pos[1]==col: if now_pos[0]==0: now_pos=[H-1,now_pos[1]] else: now_pos=[now_pos[0]-1,now_pos[1]] # for i in range(H): # print(black[i]) # print('\n') ans='black' if black[now_pos[0]][now_pos[1]]==True else 'white' print(ans)