結果
問題 | No.154 市バス |
ユーザー | konsin_tokage |
提出日時 | 2018-06-06 13:41:09 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 230 ms / 2,000 ms |
コード長 | 336 bytes |
コンパイル時間 | 1,776 ms |
コンパイル使用メモリ | 174,720 KB |
実行使用メモリ | 55,808 KB |
最終ジャッジ日時 | 2024-06-30 10:14:33 |
合計ジャッジ時間 | 4,084 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 8 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
import Control.Monad go w x g ('W':cs) = go (w+1) x g cs go w x g ('G':cs) | w+x > 0 = go 0 (w+x-1) (g+1) cs go w x g ('R':cs) | g > 0 = go w x (g-1) cs go 0 _ 0 [] = "possible" go _ _ _ _ = "impossible" main = do t <- readLn ss <- replicateM t getLine mapM_ (putStrLn . go 0 0 0) ss