結果

問題 No.600 かい文回
ユーザー 34056915823405691582
提出日時 2017-12-04 15:34:26
言語 Haskell
(9.10.1)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 1,880 ms
コンパイル使用メモリ 176,768 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-28 15:11:35
合計ジャッジ時間 2,877 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

main :: IO ()
main = readLn >>= putStr . palDecomp (cycle ['a'..'z'])

palDecomp :: [Char] -> Int -> String
palDecomp (c:cs) 1 = [c]
palDecomp (c:cs) 2 = [c,c]
palDecomp (c:cs) n
  | even n = [c] ++ palDecomp (c:cs) (div n 2) ++ [c]
  | otherwise = [c] ++ palDecomp cs (n-1) ++ [c]
0