結果

問題 No.1133 キムワイプイーター
ユーザー tomoyaatcodertomoyaatcoder
提出日時 2020-07-30 03:09:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 75,928 KB
最終ジャッジ日時 2024-07-01 06:08:03
合計ジャッジ時間 4,261 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,780 KB
testcase_01 AC 37 ms
53,148 KB
testcase_02 AC 63 ms
70,644 KB
testcase_03 AC 75 ms
74,940 KB
testcase_04 AC 75 ms
74,412 KB
testcase_05 AC 74 ms
75,928 KB
testcase_06 AC 74 ms
74,124 KB
testcase_07 AC 69 ms
74,124 KB
testcase_08 AC 65 ms
73,360 KB
testcase_09 AC 72 ms
71,788 KB
testcase_10 AC 80 ms
73,320 KB
testcase_11 AC 81 ms
74,008 KB
testcase_12 AC 77 ms
74,904 KB
testcase_13 AC 79 ms
72,728 KB
testcase_14 AC 60 ms
64,596 KB
testcase_15 AC 67 ms
69,376 KB
testcase_16 AC 64 ms
70,724 KB
testcase_17 AC 49 ms
64,844 KB
testcase_18 AC 53 ms
69,780 KB
testcase_19 AC 49 ms
65,072 KB
testcase_20 AC 52 ms
68,300 KB
testcase_21 AC 52 ms
70,716 KB
testcase_22 AC 53 ms
71,004 KB
testcase_23 AC 37 ms
52,164 KB
testcase_24 AC 38 ms
52,096 KB
testcase_25 AC 50 ms
64,984 KB
testcase_26 AC 37 ms
52,576 KB
testcase_27 AC 37 ms
51,988 KB
testcase_28 AC 37 ms
52,540 KB
testcase_29 AC 37 ms
52,412 KB
testcase_30 AC 53 ms
70,092 KB
testcase_31 AC 38 ms
53,700 KB
testcase_32 AC 37 ms
52,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
s = input()
ans = [[1 for j in range(n + 1)] for i in range(n + 1)]
ans[-1][0] = 0
now_y = n
now_x = 0
for i in range(m):
    if s[i] == "U":
        now_y -= 1
    elif s[i] == "R":
        now_x += 1
    elif s[i] == "L":
        now_x -= 1
    else:
        now_y += 1
    ans[now_y][now_x] = 0
for i in ans:
    print(*i)
0