結果

問題 No.1133 キムワイプイーター
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-30 18:01:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 120,288 KB
最終ジャッジ日時 2024-07-04 10:41:33
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 79 ms
88,452 KB
testcase_03 AC 107 ms
101,408 KB
testcase_04 AC 105 ms
102,284 KB
testcase_05 AC 109 ms
102,280 KB
testcase_06 AC 105 ms
102,064 KB
testcase_07 AC 94 ms
95,232 KB
testcase_08 AC 83 ms
86,528 KB
testcase_09 AC 102 ms
101,180 KB
testcase_10 AC 130 ms
120,288 KB
testcase_11 AC 113 ms
104,472 KB
testcase_12 AC 108 ms
102,280 KB
testcase_13 AC 110 ms
104,396 KB
testcase_14 AC 91 ms
101,048 KB
testcase_15 AC 92 ms
94,080 KB
testcase_16 AC 80 ms
87,304 KB
testcase_17 AC 48 ms
64,000 KB
testcase_18 AC 49 ms
69,376 KB
testcase_19 AC 48 ms
63,744 KB
testcase_20 AC 49 ms
67,328 KB
testcase_21 AC 48 ms
69,632 KB
testcase_22 AC 50 ms
69,120 KB
testcase_23 AC 36 ms
52,352 KB
testcase_24 AC 36 ms
52,096 KB
testcase_25 AC 47 ms
63,232 KB
testcase_26 AC 36 ms
52,224 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 35 ms
52,224 KB
testcase_29 AC 36 ms
52,224 KB
testcase_30 AC 50 ms
69,888 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

s = list(input())

memo = [[1]*(n+1) for i in range(n+1)]

memo[0][0] = 0

y, x = 0, 0

for i in range(m):
    if s[i] == 'U':
        y += 1
    elif s[i] == 'D':
        y -= 1
    elif s[i] == 'R':
        x += 1
    elif s[i] == 'L':
        x -= 1
    memo[y][x] = 0

for i in range(n,-1,-1):
    print(*memo[i])
0