結果

問題 No.1133 キムワイプイーター
ユーザー matriematrie
提出日時 2020-12-20 00:31:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,596 KB
最終ジャッジ日時 2024-09-21 10:57:00
合計ジャッジ時間 4,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 99 ms
12,928 KB
testcase_03 AC 210 ms
15,828 KB
testcase_04 AC 220 ms
16,120 KB
testcase_05 AC 213 ms
16,532 KB
testcase_06 AC 207 ms
16,256 KB
testcase_07 AC 150 ms
14,240 KB
testcase_08 AC 102 ms
12,776 KB
testcase_09 AC 183 ms
15,808 KB
testcase_10 AC 285 ms
19,596 KB
testcase_11 AC 252 ms
18,620 KB
testcase_12 AC 212 ms
16,524 KB
testcase_13 AC 259 ms
18,616 KB
testcase_14 AC 199 ms
16,248 KB
testcase_15 AC 134 ms
14,228 KB
testcase_16 AC 102 ms
12,952 KB
testcase_17 AC 37 ms
11,008 KB
testcase_18 AC 49 ms
11,264 KB
testcase_19 AC 37 ms
11,008 KB
testcase_20 AC 45 ms
11,136 KB
testcase_21 AC 49 ms
11,264 KB
testcase_22 AC 51 ms
11,136 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 39 ms
11,136 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 50 ms
11,264 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
s=list(input())
f=[[1]*(n+1) for _ in [0]*(n+1)]
x,y,f[0][0]=0,0,0
for d in s:
	if   d=='U': y+=1
	elif d=='R': x+=1
	elif d=='L': x-=1
	elif d=='D': y-=1
	f[y][x]=0
for a in reversed(f): print(*a)
0