結果

問題 No.351 市松スライドパズル
ユーザー ducktailducktail
提出日時 2018-08-14 14:00:42
言語 Haskell
(9.8.2)
結果
AC  
実行時間 729 ms / 2,000 ms
コード長 971 bytes
コンパイル時間 4,874 ms
コンパイル使用メモリ 192,732 KB
実行使用メモリ 231,680 KB
最終ジャッジ日時 2024-04-27 02:36:15
合計ジャッジ時間 12,140 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 679 ms
224,768 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 679 ms
225,280 KB
testcase_14 AC 689 ms
226,304 KB
testcase_15 AC 699 ms
231,552 KB
testcase_16 AC 690 ms
231,552 KB
testcase_17 AC 693 ms
231,680 KB
testcase_18 AC 693 ms
231,424 KB
testcase_19 AC 729 ms
231,680 KB
testcase_20 AC 693 ms
231,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

import Control.Applicative ((<$>))
import Data.List (foldl')
import Data.ByteString.Char8 (ByteString)
import qualified Data.ByteString.Char8 as B

main :: IO ()
main = do
  [h, w] <- map read <$> words <$> getLine
  n <- readLn
  solve h w <$> getops n >>= putStrLn

solve :: Int -> Int -> [(Char, Int)] -> String
solve h w ops = g $ foldl' f (0,0) ops
  where f (r, c) (s, k) | s == 'R' && r == k = (r, (c-1) `mod` w)
                        | s == 'C' && c == k = ((r-1) `mod` h, c)
                        | otherwise = (r, c)
        g (r, c) | even (r+c) = "white"
                 | otherwise = "black"

getops :: Int -> IO [(Char, Int)]
getops n = f n []
  where f x acs | x == 0 = return acs
                | otherwise = do
                    [a, b] <- B.words <$> B.getLine
                    f (x-1) ((B.head a, readi B.readInt b):acs)

readi :: Integral a =>  (ByteString -> Maybe (a, ByteString)) -> ByteString -> a
readi f s = let Just (n, _) = f s in n
0