結果

問題 No.1133 キムワイプイーター
ユーザー dangodango
提出日時 2023-06-24 18:55:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 77,688 KB
最終ジャッジ日時 2024-07-01 21:53:33
合計ジャッジ時間 3,441 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,724 KB
testcase_01 AC 39 ms
52,612 KB
testcase_02 AC 71 ms
76,564 KB
testcase_03 AC 83 ms
77,084 KB
testcase_04 AC 85 ms
77,104 KB
testcase_05 AC 85 ms
77,416 KB
testcase_06 AC 85 ms
76,920 KB
testcase_07 AC 77 ms
77,164 KB
testcase_08 AC 71 ms
76,612 KB
testcase_09 AC 79 ms
77,032 KB
testcase_10 AC 92 ms
77,336 KB
testcase_11 AC 89 ms
77,372 KB
testcase_12 AC 85 ms
77,148 KB
testcase_13 AC 89 ms
77,688 KB
testcase_14 AC 72 ms
76,972 KB
testcase_15 AC 75 ms
76,948 KB
testcase_16 AC 72 ms
76,516 KB
testcase_17 AC 49 ms
65,420 KB
testcase_18 AC 54 ms
71,256 KB
testcase_19 AC 50 ms
65,320 KB
testcase_20 AC 53 ms
69,480 KB
testcase_21 AC 53 ms
70,380 KB
testcase_22 AC 53 ms
70,772 KB
testcase_23 AC 38 ms
53,220 KB
testcase_24 AC 38 ms
53,008 KB
testcase_25 AC 50 ms
64,536 KB
testcase_26 AC 37 ms
53,272 KB
testcase_27 AC 38 ms
53,104 KB
testcase_28 AC 39 ms
52,888 KB
testcase_29 AC 37 ms
52,160 KB
testcase_30 AC 54 ms
70,980 KB
testcase_31 AC 38 ms
52,088 KB
testcase_32 AC 38 ms
53,428 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
X, Y = 0, 0
for c in S:
    if c == "U":
        Y += 1
    elif c == "R":
        X += 1
    elif c == "L":
        X -= 1
    else:
        Y -= 1
    DP[Y][X] = 0
for i in range(N + 1):
    print(*DP[N - i])
0