結果
| 問題 | No.88 次はどっちだ |
| コンテスト | |
| ユーザー |
はむ吉🐹
|
| 提出日時 | 2015-10-21 21:46:57 |
| 言語 | Haskell (9.10.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 5,000 ms |
| コード長 | 290 bytes |
| 記録 | |
| コンパイル時間 | 3,358 ms |
| コンパイル使用メモリ | 171,904 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-22 11:24:24 |
| 合計ジャッジ時間 | 2,416 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 |
コンパイルメッセージ
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
ソースコード
whoNext :: String -> String -> String
whoNext s b
| even n = s
| otherwise = if s == "oda" then "yukiko" else "oda"
where
n = length $ filter (\c -> (c == 'w') || (c == 'b')) b
main :: IO ()
main = do
s <- getLine
b <- getContents
putStrLn $ whoNext s b
はむ吉🐹