結果

問題 No.1133 キムワイプイーター
ユーザー miya145592miya145592
提出日時 2023-05-16 23:29:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-08 15:56:57
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 81 ms
76,672 KB
testcase_03 AC 95 ms
77,304 KB
testcase_04 AC 99 ms
77,144 KB
testcase_05 AC 99 ms
77,128 KB
testcase_06 AC 96 ms
77,280 KB
testcase_07 AC 89 ms
77,056 KB
testcase_08 AC 82 ms
76,800 KB
testcase_09 AC 93 ms
76,988 KB
testcase_10 AC 101 ms
77,824 KB
testcase_11 AC 102 ms
77,568 KB
testcase_12 AC 99 ms
77,216 KB
testcase_13 AC 101 ms
77,568 KB
testcase_14 AC 87 ms
76,416 KB
testcase_15 AC 85 ms
76,928 KB
testcase_16 AC 81 ms
76,672 KB
testcase_17 AC 56 ms
64,384 KB
testcase_18 AC 61 ms
69,760 KB
testcase_19 AC 55 ms
64,256 KB
testcase_20 AC 58 ms
67,840 KB
testcase_21 AC 61 ms
70,272 KB
testcase_22 AC 60 ms
70,272 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 39 ms
52,096 KB
testcase_25 AC 54 ms
64,128 KB
testcase_26 AC 39 ms
51,968 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 62 ms
70,272 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 41 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
S = input()
dp = [[1 for _ in range(N+1)] for _ in range(N+1)]
dp[0][0] = 0
now = [0, 0]
for s in S:
    if s=="U":
        now[1]+=1
    elif s=="R":
        now[0]+=1
    elif s=="L":
        now[0]-=1
    else:
        now[1]-=1
    x, y = now
    dp[y][x] = 0
for i in range(N+1):
    print(*dp[N-i])
0