結果
問題 | No.392 2分木をたどれ |
ユーザー | gemmaro |
提出日時 | 2020-06-02 21:28:35 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 452 bytes |
コンパイル時間 | 10,533 ms |
コンパイル使用メモリ | 173,824 KB |
実行使用メモリ | 9,088 KB |
最終ジャッジ日時 | 2024-11-24 14:02:11 |
合計ジャッジ時間 | 4,414 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 13 ms
9,088 KB |
testcase_02 | AC | 12 ms
8,960 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 = unlines . reverse . foldl (\acc x -> solve' x "" : acc) [] where 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 )