結果

問題 No.1133 キムワイプイーター
ユーザー miya145592miya145592
提出日時 2023-05-16 23:29:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 78,004 KB
最終ジャッジ日時 2024-12-14 20:55:59
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 38 ms
51,876 KB
testcase_02 AC 73 ms
76,544 KB
testcase_03 AC 89 ms
77,304 KB
testcase_04 AC 88 ms
77,100 KB
testcase_05 AC 90 ms
77,164 KB
testcase_06 AC 90 ms
77,152 KB
testcase_07 AC 79 ms
77,280 KB
testcase_08 AC 74 ms
76,820 KB
testcase_09 AC 84 ms
76,824 KB
testcase_10 AC 94 ms
78,004 KB
testcase_11 AC 96 ms
77,568 KB
testcase_12 AC 88 ms
76,960 KB
testcase_13 AC 93 ms
77,680 KB
testcase_14 AC 73 ms
76,528 KB
testcase_15 AC 76 ms
76,928 KB
testcase_16 AC 74 ms
76,544 KB
testcase_17 AC 51 ms
64,896 KB
testcase_18 AC 55 ms
70,144 KB
testcase_19 AC 51 ms
63,744 KB
testcase_20 AC 52 ms
67,968 KB
testcase_21 AC 55 ms
69,632 KB
testcase_22 AC 54 ms
70,656 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 50 ms
64,256 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 39 ms
51,968 KB
testcase_29 AC 39 ms
52,480 KB
testcase_30 AC 54 ms
70,272 KB
testcase_31 AC 39 ms
51,840 KB
testcase_32 AC 38 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