結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 217 ms
15,160 KB
testcase_03 AC 486 ms
20,900 KB
testcase_04 AC 510 ms
21,956 KB
testcase_05 AC 529 ms
22,024 KB
testcase_06 AC 506 ms
21,972 KB
testcase_07 AC 349 ms
17,804 KB
testcase_08 AC 202 ms
14,624 KB
testcase_09 AC 461 ms
20,468 KB
testcase_10 AC 738 ms
26,932 KB
testcase_11 AC 648 ms
25,336 KB
testcase_12 AC 528 ms
21,884 KB
testcase_13 AC 637 ms
25,556 KB
testcase_14 AC 494 ms
21,048 KB
testcase_15 AC 334 ms
17,896 KB
testcase_16 AC 215 ms
14,808 KB
testcase_17 AC 38 ms
11,136 KB
testcase_18 AC 51 ms
11,392 KB
testcase_19 AC 36 ms
11,008 KB
testcase_20 AC 45 ms
11,264 KB
testcase_21 AC 51 ms
11,264 KB
testcase_22 AC 51 ms
11,264 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 38 ms
11,008 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 30 ms
10,880 KB
testcase_30 AC 51 ms
11,392 KB
testcase_31 AC 29 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)]

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]

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

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