結果

問題 No.1133 キムワイプイーター
ユーザー TnaTna
提出日時 2022-07-13 16:35:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,904 KB
最終ジャッジ日時 2024-06-24 21:24:13
合計ジャッジ時間 4,946 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 106 ms
12,824 KB
testcase_03 AC 205 ms
15,964 KB
testcase_04 AC 210 ms
16,372 KB
testcase_05 AC 224 ms
16,620 KB
testcase_06 AC 212 ms
16,292 KB
testcase_07 AC 143 ms
14,408 KB
testcase_08 AC 91 ms
12,532 KB
testcase_09 AC 196 ms
15,860 KB
testcase_10 AC 323 ms
18,904 KB
testcase_11 AC 253 ms
17,808 KB
testcase_12 AC 208 ms
16,496 KB
testcase_13 AC 264 ms
17,812 KB
testcase_14 AC 219 ms
16,220 KB
testcase_15 AC 138 ms
14,252 KB
testcase_16 AC 97 ms
12,800 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 34 ms
11,008 KB
testcase_19 AC 31 ms
10,880 KB
testcase_20 AC 32 ms
10,880 KB
testcase_21 AC 33 ms
10,880 KB
testcase_22 AC 34 ms
10,880 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 32 ms
10,880 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 33 ms
11,136 KB
testcase_31 AC 28 ms
10,752 KB
testcase_32 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
NG
"""
n, m = [int(x) for x in input().split()]
moves = list(input())
maps = []
for i in range(n+1):
    tmp = []
    for j in range(n+1):
        tmp.append("1")
    maps.append(tmp)
# print(maps)

x = y = 0
maps[n-y][x] = "0"
# maps[n-y][n-x] = "0"
for move in moves:
    if move == "U":
        y = y + 1
    elif move == "R":
        x = x + 1
    elif move == "L":
        x = x - 1
    elif move == "D":
        y = y - 1
    maps[n-y][x] = "0"
# print(maps)

# maps = map(str, maps)
for i in range(n+1):
    # print(map_row)
    print(" ".join(maps[i]))
    # for map_d in map_row:
    #     # print(map_d)
    #     print("".join(str(map_row)))
0