結果

問題 No.1133 キムワイプイーター
ユーザー ID 21712ID 21712
提出日時 2024-12-25 23:26:04
言語 Go
(1.23.4)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 12,734 ms
コンパイル使用メモリ 222,912 KB
実行使用メモリ 6,144 KB
最終ジャッジ日時 2024-12-25 23:26:32
合計ジャッジ時間 24,383 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 265 ms
5,248 KB
testcase_03 WA -
testcase_04 AC 671 ms
5,888 KB
testcase_05 AC 758 ms
6,016 KB
testcase_06 AC 663 ms
5,888 KB
testcase_07 AC 524 ms
5,248 KB
testcase_08 AC 276 ms
5,248 KB
testcase_09 AC 580 ms
5,760 KB
testcase_10 AC 929 ms
6,016 KB
testcase_11 AC 874 ms
6,144 KB
testcase_12 AC 743 ms
6,016 KB
testcase_13 AC 840 ms
6,016 KB
testcase_14 AC 637 ms
5,504 KB
testcase_15 AC 392 ms
5,248 KB
testcase_16 AC 284 ms
5,248 KB
testcase_17 AC 42 ms
5,248 KB
testcase_18 AC 103 ms
5,248 KB
testcase_19 AC 44 ms
5,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
5,248 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var n, m int
	var s string
	Scan(&n,&m,&s)
	f:=make([][]int,n+1)
	for i:=range f {
		f[i] = make([]int,n+1)
	}
	var x, y int
	for _, c :=range s {
		switch c {
			case 'U':
				y++
			case 'R':
				x++
			case 'L':
				x--
			case 'D':
				y--
		}
		f[y][x] = 1
	}
	for j := range f {
		for i, v := range f[n-j] {
			if i > 0 {
				Print(" ")
			}
			Print(1-v)
		}
		Println()
	}
}
0