結果

問題 No.351 市松スライドパズル
ユーザー aimyaimy
提出日時 2017-04-18 10:49:32
言語 Haskell
(9.8.2)
結果
AC  
実行時間 1,569 ms / 2,000 ms
コード長 602 bytes
コンパイル時間 9,108 ms
コンパイル使用メモリ 173,440 KB
実行使用メモリ 49,792 KB
最終ジャッジ日時 2024-07-19 07:35:53
合計ジャッジ時間 21,832 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,106 ms
49,536 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1,523 ms
49,024 KB
testcase_14 AC 1,538 ms
49,152 KB
testcase_15 AC 1,543 ms
49,792 KB
testcase_16 AC 1,547 ms
49,664 KB
testcase_17 AC 1,508 ms
49,792 KB
testcase_18 AC 1,486 ms
49,792 KB
testcase_19 AC 1,569 ms
49,792 KB
testcase_20 AC 1,532 ms
49,664 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 #

query :: Int -> Int -> String
query h w
 | odd h == odd w = "white"
 | otherwise = "black"

main = do
 [h,w] <- map read . words <$> getLine
 getLine
 sks <- map ((\[s,k]-> (s, read k)) . words) . lines <$> getContents
 putStrLn $ (ichimatsu h w sks)

ichimatsu :: Int -> Int -> [(String,Int)] -> String
ichimatsu h w sks = uncurry query $ foldr (sim h w) (0,0) sks

sim :: Int -> Int -> (String,Int) -> (Int,Int) -> (Int,Int)
sim h w ("R",k) (h',w')
 | k/=h' = (h',w')
 | w'==0 = (h',w-1)
 | otherwise = (h',w'-1)
sim h w ("C",k) (h',w')
 | k/=w' = (h',w')
 | h'==0 = (h-1,w')
 | otherwise = (h'-1,w')
0