結果

問題 No.1133 キムワイプイーター
ユーザー first_vilfirst_vil
提出日時 2020-07-27 11:19:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-06-28 20:02:50
合計ジャッジ時間 4,837 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 105 ms
11,392 KB
testcase_03 AC 223 ms
12,160 KB
testcase_04 AC 229 ms
12,160 KB
testcase_05 AC 242 ms
12,408 KB
testcase_06 AC 237 ms
12,160 KB
testcase_07 AC 163 ms
11,776 KB
testcase_08 AC 96 ms
11,520 KB
testcase_09 AC 210 ms
12,028 KB
testcase_10 AC 359 ms
13,312 KB
testcase_11 AC 309 ms
13,184 KB
testcase_12 AC 239 ms
12,284 KB
testcase_13 AC 294 ms
13,184 KB
testcase_14 AC 239 ms
12,156 KB
testcase_15 AC 167 ms
11,904 KB
testcase_16 AC 106 ms
11,392 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 27 ms
11,008 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 26 ms
11,008 KB
testcase_21 AC 27 ms
11,008 KB
testcase_22 AC 26 ms
11,008 KB
testcase_23 AC 25 ms
10,752 KB
testcase_24 AC 26 ms
10,752 KB
testcase_25 AC 27 ms
10,752 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 26 ms
10,880 KB
testcase_28 AC 26 ms
10,752 KB
testcase_29 AC 25 ms
10,752 KB
testcase_30 AC 26 ms
11,136 KB
testcase_31 AC 27 ms
10,752 KB
testcase_32 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=[['1']*(n+1) for _ in range(n+1)]
a[n][0]='0'
y,x=n,0
for i in input():
    if i=='U':
        y-=1
    elif i=='D':
        y+=1
    elif i=='R':
        x+=1
    else:
        x-=1
    if 0<=y and y<=n and 0<=x and x<=n:
        a[y][x]='0'
for i in a:
    print(' '.join(i))
0