結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | mazeppa1108 |
提出日時 | 2015-06-27 01:23:54 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 38 ms / 1,000 ms |
コード長 | 1,260 bytes |
コンパイル時間 | 4,944 ms |
コンパイル使用メモリ | 172,288 KB |
実行使用メモリ | 7,936 KB |
最終ジャッジ日時 | 2024-09-14 12:33:26 |
合計ジャッジ時間 | 6,256 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
7,808 KB |
testcase_01 | AC | 38 ms
7,936 KB |
testcase_02 | AC | 36 ms
7,936 KB |
testcase_03 | AC | 35 ms
7,936 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 28 ms
7,936 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 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
ソースコード
import Data.List import Control.Applicative import Control.Monad main = do [t, a, b] <- map read . words <$> getLine if a > t || b > t || (a == 0 && b == 0 && t == 1) then putStrLn "NO" else do putStrLn "YES" mapM_ putStrLn $ move t 0 0 b a move 1 x y b a = [arrowL (b - x) (a - y)] move t x y b a = case arrow (b - x) (a - y) of "^" -> arrow (b - x) (a - y) : move (t - 1) x (y + 1) b a "^>" -> arrow (b - x) (a - y) : move (t - 1) (x + 1) (y + 1) b a ">" -> arrow (b - x) (a - y) : move (t - 1) (x + 1) y b a ">v" -> arrow (b - x) (a - y) : move (t - 1) (x + 1) (y - 1) b a "v" -> arrow (b - x) (a - y) : move (t - 1) x (y - 1) b a "<v" -> arrow (b - x) (a - y) : move (t - 1) (x - 1) (y - 1) b a "<" -> arrow (b - x) (a - y) : move (t - 1) (x - 1) y b a "<^" -> arrow (b - x) (a - y) : move (t - 1) (x - 1) (y + 1) b a arrow 1 1 = "^" arrow 1 0 = "v" arrow 1 (-1) = ">" arrow 0 (-1) = "<" arrow (-1) (-1) = "v" arrow (-1) 0 = "^" arrow (-1) 1 = "<" arrow 0 1 = ">" arrow 0 0 = ">" arrow x y | x > 1 && y > 1 = "^>" | x > 1 = ">" | y > 1 = "^" arrowL 1 1 = "^>" arrowL 1 0 = ">" arrowL 1 (-1) = ">v" arrowL 0 (-1) = "v" arrowL (-1) (-1) = "<v" arrowL (-1) 0 = "<" arrowL (-1) 1 = "<^" arrowL 0 1 = "^"