結果

問題 No.1133 キムワイプイーター
ユーザー kikagekikage
提出日時 2021-08-16 17:09:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 673 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,796 KB
最終ジャッジ日時 2024-10-09 14:23:50
合計ジャッジ時間 9,553 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 209 ms
11,392 KB
testcase_03 AC 493 ms
12,028 KB
testcase_04 AC 487 ms
12,284 KB
testcase_05 AC 538 ms
12,160 KB
testcase_06 AC 496 ms
12,160 KB
testcase_07 AC 354 ms
11,768 KB
testcase_08 AC 218 ms
11,520 KB
testcase_09 AC 444 ms
12,028 KB
testcase_10 AC 673 ms
12,796 KB
testcase_11 AC 618 ms
12,536 KB
testcase_12 AC 528 ms
12,156 KB
testcase_13 AC 596 ms
12,540 KB
testcase_14 AC 455 ms
12,156 KB
testcase_15 AC 314 ms
11,644 KB
testcase_16 AC 218 ms
11,436 KB
testcase_17 AC 54 ms
11,264 KB
testcase_18 AC 88 ms
11,520 KB
testcase_19 AC 51 ms
11,264 KB
testcase_20 AC 76 ms
11,392 KB
testcase_21 AC 91 ms
11,520 KB
testcase_22 AC 94 ms
11,648 KB
testcase_23 AC 30 ms
10,752 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 51 ms
11,264 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 30 ms
10,880 KB
testcase_30 AC 92 ms
11,520 KB
testcase_31 AC 30 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D=[[1 for y in range(n+1)]for x in range(n+1)]


D[0][0]=0
for i in range(m):
    if s[i]=="U":a,b=a,b+1
    if s[i]=="R":a,b=a+1,b
    if s[i]=="L":a,b=a-1,b
    if s[i]=="D":a,b=a,b-1
        
    if 0<=a<=n and 0<=b<=n:
        D[a][b]=0



for y in range(n+1):
    for x in range(n+1):
        if x>0:print(" ",end="")
        print(D[x][n-y],end="")
    
    print("")
0