結果

問題 No.1133 キムワイプイーター
ユーザー scrappyscrappy
提出日時 2022-10-13 11:42:39
言語 Go
(1.22.1)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 769 bytes
コンパイル時間 15,794 ms
コンパイル使用メモリ 219,348 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-26 11:57:38
合計ジャッジ時間 19,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 37 ms
5,376 KB
testcase_03 AC 96 ms
5,376 KB
testcase_04 AC 84 ms
5,376 KB
testcase_05 AC 103 ms
5,376 KB
testcase_06 AC 68 ms
5,376 KB
testcase_07 AC 84 ms
5,376 KB
testcase_08 AC 93 ms
5,376 KB
testcase_09 AC 38 ms
5,376 KB
testcase_10 AC 41 ms
5,376 KB
testcase_11 AC 68 ms
5,376 KB
testcase_12 AC 94 ms
5,376 KB
testcase_13 AC 55 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 26 ms
5,376 KB
testcase_16 AC 61 ms
5,376 KB
testcase_17 AC 43 ms
5,376 KB
testcase_18 AC 109 ms
5,376 KB
testcase_19 AC 39 ms
5,376 KB
testcase_20 AC 85 ms
5,376 KB
testcase_21 AC 109 ms
5,376 KB
testcase_22 AC 114 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 39 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 118 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
	"strings"
)

func main() {
	sc := bufio.NewScanner(os.Stdin)
	sc.Buffer(make([]byte, 1000000+2), 1000000+2)

	sc.Scan()
	ss := strings.Fields(sc.Text())
	n, _ := strconv.Atoi(ss[0])
	//m, _ := strconv.Atoi(ss[1])

	sc.Scan()
	s := sc.Text()

	mm := make([][]bool, 1+n)
	for b := 0; b <= n; b++ {
		mm[b] = make([]bool, 1+n)
	}

	a, b := 0, 0
	mm[b][a] = true // ate
	for _, c := range s {
		switch c {
		case 'U':
			b++
		case 'R':
			a++
		case 'L':
			a--
		case 'D':
			b--
		}
		mm[b][a] = true // ate
	}

	for b := n; b >= 0; b-- {
		for a := 0; a <= n; a++ {
			if mm[b][a] {
				fmt.Print(0)
			} else {
				fmt.Print(1)
			}

			if a < n {
				fmt.Print(" ")
			} else {
				fmt.Println()
			}
		}
	}
}
0