結果
問題 | No.154 市バス |
ユーザー | tottoripaper |
提出日時 | 2015-03-04 17:53:18 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 418 bytes |
コンパイル時間 | 10,108 ms |
コンパイル使用メモリ | 173,056 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-10-13 07:08:54 |
合計ジャッジ時間 | 2,624 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
7,936 KB |
testcase_01 | AC | 30 ms
7,936 KB |
testcase_02 | AC | 31 ms
8,064 KB |
testcase_03 | AC | 29 ms
7,936 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 29 ms
8,064 KB |
testcase_08 | WA | - |
コンパイルメッセージ
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 main = do n <- readLn replicateM n $ do s <- getLine let f [] g = g == 0 f (x:xs) g | x == 'W' = f xs g | x == 'G' = f xs (g+1) | g > 0 = f xs (g-1) | otherwise = False in putStrLn $ if length s < 3 || not (f s 0) then "impossible" else "possible"