結果

問題 No.1133 キムワイプイーター
ユーザー ohanaohana
提出日時 2023-11-06 11:10:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-09-25 23:01:08
合計ジャッジ時間 4,428 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 82 ms
76,544 KB
testcase_03 AC 101 ms
76,668 KB
testcase_04 AC 100 ms
76,800 KB
testcase_05 AC 105 ms
77,216 KB
testcase_06 AC 102 ms
77,184 KB
testcase_07 AC 90 ms
77,056 KB
testcase_08 AC 84 ms
76,544 KB
testcase_09 AC 101 ms
76,948 KB
testcase_10 AC 115 ms
77,824 KB
testcase_11 AC 111 ms
77,568 KB
testcase_12 AC 103 ms
77,060 KB
testcase_13 AC 110 ms
77,312 KB
testcase_14 AC 90 ms
76,544 KB
testcase_15 AC 89 ms
76,544 KB
testcase_16 AC 83 ms
76,544 KB
testcase_17 AC 57 ms
64,640 KB
testcase_18 AC 63 ms
69,376 KB
testcase_19 AC 57 ms
64,128 KB
testcase_20 AC 60 ms
67,584 KB
testcase_21 AC 63 ms
69,248 KB
testcase_22 AC 64 ms
70,400 KB
testcase_23 AC 40 ms
51,456 KB
testcase_24 AC 40 ms
51,456 KB
testcase_25 AC 56 ms
64,128 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 40 ms
52,096 KB
testcase_28 AC 40 ms
51,840 KB
testcase_29 AC 40 ms
51,712 KB
testcase_30 AC 64 ms
70,528 KB
testcase_31 AC 40 ms
51,712 KB
testcase_32 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = [[1 for i in range(n + 1)] for j in range(n + 1)]
A[0][0] = 0

y, x = 0, 0
d = {"R": (0, 1), "L": (0, -1), "U": (1, 0), "D": (-1, 0)}
for c in s:
    y, x = y + d[c][0], x + d[c][1]
    A[y][x] = 0


for a in A[::-1]:
    print(*a)
0