結果

問題 No.351 市松スライドパズル
ユーザー ducktailducktail
提出日時 2018-08-14 13:56:33
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 747 bytes
コンパイル時間 6,997 ms
コンパイル使用メモリ 172,160 KB
実行使用メモリ 412,416 KB
最終ジャッジ日時 2024-09-24 08:42:02
合計ジャッジ時間 32,021 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,671 ms
218,880 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 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 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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:23:31: warning: [GHC-63394] [-Wx-partial]
    In the use of ‘head’
    (imported from Prelude, but defined in GHC.List):
    "This is a partial function, it throws an error on empty lists. Use pattern matching or Data.List.uncons instead. Consider refactoring to use Data.List.NonEmpty."
   |
23 |                     f (x-1) ((head a, read b):acs)
   |                               ^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative ((<$>))
import Data.List (foldl')

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] <- words <$> getLine
                    f (x-1) ((head a, read b):acs)
0