結果

問題 No.486 3 Straight Win(3連勝)
ユーザー alpha_virginisalpha_virginis
提出日時 2017-02-24 22:33:48
言語 Haskell
(9.8.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,135 bytes
コンパイル時間 4,429 ms
コンパイル使用メモリ 151,320 KB
最終ジャッジ日時 2024-06-26 04:02:07
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )

Main.hs:12:1: error: [GHC-87110]
    Could not load module ‘Data.IntMap’.
    It is a member of the hidden package ‘containers-0.6.8’.
    Use -v to see a list of the files searched for.
   |
12 | import qualified Data.IntMap as IntMap
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Main.hs:13:1: error: [GHC-87110]
    Could not load module ‘Data.Map’.
    It is a member of the hidden package ‘containers-0.6.8’.
    Use -v to see a list of the files searched for.
   |
13 | import qualified Data.Map as Map
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

ソースコード

diff #

{-# LANGUAGE OverloadedStrings #-}
module Main where

import Data.Maybe
import qualified Data.ByteString.Char8 as C
import Control.Monad(forM_)
import Data.Int
import Data.List
import Data.Array
import Data.Word
import Data.Bits
import qualified Data.IntMap as IntMap
import qualified Data.Map as Map
import Data.Functor

yes :: C.ByteString
yes = "YES"

no :: C.ByteString
no = "NO"

getInts :: IO [Int]
getInts = do
  ss <- C.getLine
  return $ map (fst . fromJust . C.readInt) $ C.words ss

getIntss :: Int -> IO [[Int]]
getIntss 0 = return []
getIntss n = do
  xs <- getInts
  xss <- getIntss (n - 1)  
  return $ xs : xss

-- end standard template --


main :: IO ()
main = do
  ss <- C.getLine
  let res = solve ss
  C.putStrLn res

solve :: C.ByteString -> C.ByteString
solve ss
  | x == 'O' = "East"
  | x == ' ' = "NA"
  | x == 'X' = "West"
  | otherwise = error "okasii"
  where
    x = f ss ' ' 0
    f :: C.ByteString -> Char -> Int -> Char
    f ss c t
      | t == 3    = c
      | C.null ss = ' '
      | c' == c   = f ss' c $ t + 1
      | otherwise = f ss' c' 1
      where c'  = C.head ss
            ss' = C.tail ss
0