結果
問題 | No.154 市バス |
ユーザー | tnoda_ |
提出日時 | 2015-02-18 16:51:24 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 442 bytes |
コンパイル時間 | 13,496 ms |
コンパイル使用メモリ | 237,656 KB |
実行使用メモリ | 7,888 KB |
最終ジャッジ日時 | 2024-10-13 06:51:56 |
合計ジャッジ時間 | 18,295 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,248 KB |
ソースコード
package main import ( "fmt" ) func solve() (res string) { res = "impossible" var S string fmt.Scan(&S) var W, G, R int for _, r := range S { switch r { case 'W': W++ case 'G': if W == 0 { return } W = 0 G++ case 'R': R++ } if R > G { return } } if W == 0 && G == R { res = "possible" } return } func main() { var N int fmt.Scan(&N) for i := 0; i < N; i++ { fmt.Println(solve()) } }