結果

問題 No.1133 キムワイプイーター
ユーザー akitsugu777akitsugu777
提出日時 2020-12-02 16:42:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 711 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,924 KB
最終ジャッジ日時 2024-09-13 10:31:40
合計ジャッジ時間 9,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 214 ms
15,284 KB
testcase_03 AC 480 ms
20,776 KB
testcase_04 AC 503 ms
21,956 KB
testcase_05 AC 533 ms
21,976 KB
testcase_06 AC 532 ms
21,972 KB
testcase_07 AC 361 ms
17,932 KB
testcase_08 AC 200 ms
14,748 KB
testcase_09 AC 457 ms
20,476 KB
testcase_10 AC 711 ms
26,924 KB
testcase_11 AC 648 ms
25,336 KB
testcase_12 AC 544 ms
21,888 KB
testcase_13 AC 637 ms
25,812 KB
testcase_14 AC 490 ms
20,916 KB
testcase_15 AC 326 ms
17,892 KB
testcase_16 AC 213 ms
14,932 KB
testcase_17 AC 38 ms
11,136 KB
testcase_18 AC 50 ms
11,264 KB
testcase_19 AC 38 ms
11,008 KB
testcase_20 AC 45 ms
11,136 KB
testcase_21 AC 49 ms
11,264 KB
testcase_22 AC 51 ms
11,136 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 37 ms
11,136 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 51 ms
11,264 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

L = [[1]*(n+1) for _ in range(n+1)]
# print(L)

x = 0
y = 0
Lx = [0]
Ly = [0]
for s in S:
    if s == 'R':
        x += 1
    elif s == 'L':
        x -= 1
    elif s == 'U':
        y += 1
    else:
        y -= 1
    Lx += [x]
    Ly += [y]

# print(Lx)
# print(Ly)

for i, j in zip(Lx, Ly):
    L[j][i] = 0
# print(L)

for i in L[::-1]:
    print(*i)
0