結果

問題 No.1133 キムワイプイーター
ユーザー 双六双六
提出日時 2020-08-19 01:34:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 77,732 KB
最終ジャッジ日時 2024-10-12 03:26:29
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,884 KB
testcase_01 AC 41 ms
55,240 KB
testcase_02 AC 74 ms
76,600 KB
testcase_03 AC 96 ms
76,920 KB
testcase_04 AC 97 ms
77,180 KB
testcase_05 AC 97 ms
77,732 KB
testcase_06 AC 95 ms
77,612 KB
testcase_07 AC 88 ms
77,312 KB
testcase_08 AC 83 ms
77,036 KB
testcase_09 AC 92 ms
77,112 KB
testcase_10 AC 101 ms
77,348 KB
testcase_11 AC 101 ms
77,484 KB
testcase_12 AC 95 ms
77,360 KB
testcase_13 AC 99 ms
77,312 KB
testcase_14 AC 84 ms
76,544 KB
testcase_15 AC 86 ms
76,800 KB
testcase_16 AC 82 ms
77,108 KB
testcase_17 AC 59 ms
65,536 KB
testcase_18 AC 64 ms
71,168 KB
testcase_19 AC 59 ms
65,536 KB
testcase_20 AC 61 ms
68,992 KB
testcase_21 AC 63 ms
70,912 KB
testcase_22 AC 65 ms
71,040 KB
testcase_23 AC 45 ms
53,888 KB
testcase_24 AC 44 ms
53,632 KB
testcase_25 AC 56 ms
65,408 KB
testcase_26 AC 44 ms
54,016 KB
testcase_27 AC 46 ms
54,016 KB
testcase_28 AC 42 ms
54,144 KB
testcase_29 AC 42 ms
53,632 KB
testcase_30 AC 60 ms
71,552 KB
testcase_31 AC 43 ms
53,888 KB
testcase_32 AC 40 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, M = getlist()
	s = input()
	table = [[1] * (N + 1) for i in range(N + 1)]
	x = 0; y = N
	table[y][x] = 0
	for i in s:
		if i == "U":
			y -= 1
		elif i == "D":
			y += 1
		elif i == "L":
			x -= 1
		else:
			x += 1
		table[y][x] = 0

	for i in range(N + 1):
		print(*table[i])



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