結果

問題 No.683 Two Operations No.3
ユーザー ducktailducktail
提出日時 2018-05-11 23:11:52
言語 Haskell
(9.8.2)
結果
MLE  
実行時間 -
コード長 527 bytes
コンパイル時間 11,957 ms
コンパイル使用メモリ 173,952 KB
実行使用メモリ 695,808 KB
最終ジャッジ日時 2024-06-28 09:00:23
合計ジャッジ時間 16,289 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,980 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 MLE -
testcase_05 AC 4 ms
6,940 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 ((<$>))

main :: IO ()
main = solve <$> map read <$> words <$> getLine >>= putStrLn

solve :: [Int] -> String
solve [a, b] = case [(a, b)] >>= dfs of
                [] -> "No"
                _ -> "Yes"

dfs :: (Int, Int) -> [(Int, Int)]
dfs (x, y) | x == 0 && y == 0 = [(0, 0)]
           | odd x && odd y = []
           | odd x && even y = [(x-1, y `div` 2)] >>= dfs 
           | even x && odd y = [(x `div` 2, y-1)] >>= dfs
           | otherwise = [(x-1, y `div` 2), (x `div` 2, y-1)] >>= dfs
0