結果

問題 No.154 市バス
ユーザー yukirinyukirin
提出日時 2016-03-01 21:58:44
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 893 bytes
コンパイル時間 13,509 ms
コンパイル使用メモリ 240,204 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-13 08:05:20
合計ジャッジ時間 12,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"bytes"
	"fmt"
	"os"
	"regexp"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)

func main() {
	sc.Split(bufio.ScanWords)
	t := nextInt()
	r := regexp.MustCompile(`W.*?G`)
	r2 := regexp.MustCompile(`G.*?R`)

	for i := 0; i < t; i++ {
		b := []byte(nextLine())
		c := 0
		for j := 0; j < 3; j++ {
			loc := r.FindIndex(b)
			if loc == nil {
				break
			}

			b[loc[0]] = 'A'
			base := loc[1] - 1

			loc = r2.FindIndex(b[loc[1]-1:])
			if loc == nil {
				break
			}

			b[loc[0]+base], b[loc[1]-1+base] = 'A', 'A'
			c++
		}
		if bytes.Contains(b, []byte{'G'}) || bytes.Contains(b, []byte{'R'}) {
			fmt.Println("impossible")
			continue
		}

		if c < 1 {
			fmt.Println("impossible")
			continue
		}
		fmt.Println("possible")
	}
}

func nextLine() string {
	sc.Scan()
	return sc.Text()
}

func nextInt() int {
	i, _ := strconv.Atoi(nextLine())
	return i
}
0