結果
| 問題 |
No.203 ゴールデン・ウィーク(1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-01-10 15:26:01 |
| 言語 | Haskell (9.10.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 275 bytes |
| コンパイル時間 | 4,603 ms |
| コンパイル使用メモリ | 177,664 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-18 10:33:33 |
| 合計ジャッジ時間 | 4,964 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 29 |
コンパイルメッセージ
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 Data.List
import Control.Monad
main = do
c <- concat <$> replicateM 2 getLine
print $ maximum $ map length $ unfoldr (\xs -> if null xs then Nothing else let y = takeWhile (/='x') xs in Just (y, drop (length $ if null y then takeWhile (/='o') xs else y) xs)) c