結果

問題 No.1133 キムワイプイーター
ユーザー 👑 KazunKazun
提出日時 2020-07-29 02:16:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 77,752 KB
最終ジャッジ日時 2024-06-28 21:13:57
合計ジャッジ時間 3,106 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,480 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 59 ms
76,260 KB
testcase_03 AC 72 ms
76,888 KB
testcase_04 AC 70 ms
77,032 KB
testcase_05 AC 72 ms
77,120 KB
testcase_06 AC 78 ms
76,636 KB
testcase_07 AC 66 ms
76,788 KB
testcase_08 AC 59 ms
76,032 KB
testcase_09 AC 68 ms
76,444 KB
testcase_10 AC 79 ms
77,732 KB
testcase_11 AC 78 ms
77,388 KB
testcase_12 AC 73 ms
76,984 KB
testcase_13 AC 77 ms
77,752 KB
testcase_14 AC 69 ms
76,544 KB
testcase_15 AC 65 ms
76,692 KB
testcase_16 AC 61 ms
76,032 KB
testcase_17 AC 41 ms
59,224 KB
testcase_18 AC 39 ms
60,484 KB
testcase_19 AC 39 ms
59,720 KB
testcase_20 AC 39 ms
61,344 KB
testcase_21 AC 39 ms
61,764 KB
testcase_22 AC 40 ms
61,400 KB
testcase_23 AC 35 ms
52,920 KB
testcase_24 AC 34 ms
52,564 KB
testcase_25 AC 39 ms
60,348 KB
testcase_26 AC 35 ms
53,792 KB
testcase_27 AC 35 ms
52,516 KB
testcase_28 AC 37 ms
53,444 KB
testcase_29 AC 39 ms
52,524 KB
testcase_30 AC 43 ms
61,476 KB
testcase_31 AC 36 ms
53,416 KB
testcase_32 AC 37 ms
52,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
S=input()

T=[[1]*(N+1) for _ in range(N+1)]
X,Y=0,0

T[0][0]=0
for s in S:
    if s=="U":
        Y+=1
    elif s=="R":
        X+=1
    elif s=="L":
        X-=1
    else:
        Y-=1
    T[Y][X]=0

U=[]
for x in T[::-1]:
    U.append(" ".join(map(str,x)))

print("\n".join(map(str,U)))
0