結果

問題 No.1133 キムワイプイーター
ユーザー ThetaTheta
提出日時 2022-10-20 16:48:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-30 09:09:34
合計ジャッジ時間 4,947 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 82 ms
11,392 KB
testcase_03 AC 160 ms
12,028 KB
testcase_04 AC 164 ms
12,672 KB
testcase_05 AC 168 ms
12,156 KB
testcase_06 AC 159 ms
12,160 KB
testcase_07 AC 118 ms
11,644 KB
testcase_08 AC 84 ms
11,516 KB
testcase_09 AC 139 ms
12,028 KB
testcase_10 AC 202 ms
13,440 KB
testcase_11 AC 191 ms
13,056 KB
testcase_12 AC 165 ms
12,156 KB
testcase_13 AC 188 ms
13,056 KB
testcase_14 AC 142 ms
12,028 KB
testcase_15 AC 104 ms
11,644 KB
testcase_16 AC 83 ms
11,392 KB
testcase_17 AC 38 ms
11,136 KB
testcase_18 AC 50 ms
11,264 KB
testcase_19 AC 36 ms
11,136 KB
testcase_20 AC 45 ms
11,264 KB
testcase_21 AC 48 ms
11,136 KB
testcase_22 AC 50 ms
11,136 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,752 KB
testcase_25 AC 37 ms
11,136 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 28 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 50 ms
11,392 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    board = [[1 for _ in range(n+1)] for _ in range(n+1)]
    board[0][0] = 0
    current = [0, 0]
    for move in s:
        match move:
            case "R":
                current = [current[0], current[1]+1]
            case "L":
                current = [current[0], current[1]-1]
            case "U":
                current = [current[0]+1, current[1]]
            case "D":
                current = [current[0]-1, current[1]]
        board[current[0]][current[1]] = 0
    for row in reversed(board):
        print(*row)


if __name__ == "__main__":
    main()
0