結果
問題 | No.392 2分木をたどれ |
ユーザー | gemmaro |
提出日時 | 2020-06-02 21:20:37 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 470 bytes |
コンパイル時間 | 5,247 ms |
コンパイル使用メモリ | 173,312 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-05-03 13:25:49 |
合計ジャッジ時間 | 5,367 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 13 ms
9,088 KB |
testcase_02 | AC | 12 ms
9,088 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 Control.Monad as M main :: IO () main = do m <- readLn a <- M.replicateM m readLn putStr $ solve a solve :: [Int] -> String solve a = unlines $ reverse $ solve' a [] solve' :: [Int] -> [String] -> [String] solve' t ss = foldl (\acc x -> solve'' x "" : acc) ss t solve'' :: Int -> String -> String solve'' 0 x = x solve'' n x | n `mod` 2 == 0 = solve'' ((n `div` 2) - 1) ( 'R' : x ) | otherwise = solve'' ((n - 1) `div` 2) ( 'L' : x )