結果
| 問題 | No.154 市バス |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-01 21:39:46 |
| 言語 | Go (1.23.4) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 694 bytes |
| コンパイル時間 | 11,956 ms |
| コンパイル使用メモリ | 226,092 KB |
| 実行使用メモリ | 6,912 KB |
| 最終ジャッジ日時 | 2024-10-13 08:05:05 |
| 合計ジャッジ時間 | 12,954 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 1 |
| other | WA * 8 |
ソースコード
package main
import (
"bufio"
"fmt"
"os"
"regexp"
"strconv"
"strings"
)
var sc = bufio.NewScanner(os.Stdin)
func main() {
sc.Split(bufio.ScanWords)
t := nextInt()
r := regexp.MustCompile(`G.*?R`)
for i := 0; i < t; i++ {
b := []byte(strings.Replace(nextLine(), "W", "", -1))
for j := 0; j < 3; j++ {
loc := r.FindIndex(b)
if loc == nil {
break
}
b[loc[0]], b[loc[1]-1] = 'W', 'W'
b = []byte(strings.Replace(string(b), "W", "", -1))
}
if len(b) == 0 {
fmt.Println("possible")
continue
}
fmt.Println("impossible")
}
}
func nextLine() string {
sc.Scan()
return sc.Text()
}
func nextInt() int {
i, _ := strconv.Atoi(nextLine())
return i
}