結果
問題 | No.478 一般門松列列 |
ユーザー | atuk721 |
提出日時 | 2017-02-06 05:46:45 |
言語 | Haskell (9.8.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 669 bytes |
コンパイル時間 | 1,465 ms |
コンパイル使用メモリ | 172,160 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-06-06 17:36:42 |
合計ジャッジ時間 | 5,394 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
11,008 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 59 ms
7,936 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 | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
コンパイルメッセージ
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 qualified Data.Char as C main :: IO () main = do [n, k] <- fmap (map read . words) getLine :: IO [Int] let ix = [(10 ^ (n -1))..(10 ^ n - 1)] ix' = map (map C.digitToInt . show) ix result = take 1 $ filter (check (n - k - 2)) ix' putStrLn $ if length result == 0 then "-1" else foldr (\c a -> (show c) ++ " " ++ a) [] $ result !! 0 check :: Int -> [Int] -> Bool check 0 (_:_:[]) = True check _ (_:_:[]) = False check k' (a:b:c:xs) | k' < 0 = False | isKadomatsu = check (k'-1) (b:c:xs) | otherwise = check k' (b:c:xs) where isKadomatsu = a /= b && a /= c && b /= c && (a > b && c > b || a < b && c < b)