結果

問題 No.1133 キムワイプイーター
ユーザー 👑 KazunKazun
提出日時 2020-07-29 02:17:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,676 KB
最終ジャッジ日時 2024-06-28 21:14:01
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 62 ms
76,416 KB
testcase_03 AC 71 ms
76,968 KB
testcase_04 AC 69 ms
76,704 KB
testcase_05 AC 76 ms
77,132 KB
testcase_06 AC 81 ms
77,088 KB
testcase_07 AC 72 ms
76,964 KB
testcase_08 AC 64 ms
76,672 KB
testcase_09 AC 75 ms
76,572 KB
testcase_10 AC 83 ms
77,452 KB
testcase_11 AC 76 ms
77,676 KB
testcase_12 AC 70 ms
76,552 KB
testcase_13 AC 74 ms
77,216 KB
testcase_14 AC 64 ms
76,288 KB
testcase_15 AC 60 ms
76,800 KB
testcase_16 AC 57 ms
76,416 KB
testcase_17 AC 37 ms
58,752 KB
testcase_18 AC 38 ms
60,160 KB
testcase_19 AC 41 ms
58,752 KB
testcase_20 AC 37 ms
59,776 KB
testcase_21 AC 39 ms
60,288 KB
testcase_22 AC 39 ms
60,288 KB
testcase_23 AC 32 ms
52,096 KB
testcase_24 AC 32 ms
51,968 KB
testcase_25 AC 39 ms
58,752 KB
testcase_26 AC 32 ms
51,712 KB
testcase_27 AC 33 ms
51,840 KB
testcase_28 AC 33 ms
52,480 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 42 ms
60,928 KB
testcase_31 AC 34 ms
52,096 KB
testcase_32 AC 33 ms
52,480 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