結果

問題 No.1133 キムワイプイーター
ユーザー satoyuyapyaasatoyuyapyaa
提出日時 2020-07-27 20:24:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 423 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 15,208 KB
最終ジャッジ日時 2024-06-28 20:13:36
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 282 ms
12,816 KB
testcase_10 AC 438 ms
13,488 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 402 ms
13,936 KB
testcase_14 AC 298 ms
11,900 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 29 ms
10,624 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 29 ms
10,496 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 29 ms
10,496 KB
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
x,y = n,n

kim_pos = {(i,j):True for i in range(x+1) for j in range(y+1)}
#print(board)
s = input()
now_x = 0
now_y = 0
kim_pos[(0,0)] = False
for c in s:
	if  c=="L":
		now_x-=1
	if  c=="R":
		now_x+=1
	if  c=="U":
		now_y+=1
	if  c=="D":
		now_y-=1
	kim_pos[(now_x,now_y)] = False
for i in range(n+1):
		temp = ["1" if kim_pos[(j,i)] else "0" for j in range(n +1)]
		print(" ".join(temp))
	
0