結果

問題 No.1133 キムワイプイーター
ユーザー satoyuyapyaasatoyuyapyaa
提出日時 2020-07-27 15:37:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 15,468 KB
最終ジャッジ日時 2024-06-28 20:08:12
合計ジャッジ時間 5,706 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 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 276 ms
12,948 KB
testcase_10 AC 460 ms
13,748 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 358 ms
14,192 KB
testcase_14 AC 280 ms
12,028 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 27 ms
10,880 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 26 ms
10,880 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 25 ms
10,752 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[i,j] else "0" for j in range(n +1)]
		print(" ".join(temp))
	
0