結果
問題 | No.600 かい文回 |
ユーザー |
![]() |
提出日時 | 2017-12-04 14:23:27 |
言語 | Haskell (9.10.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 252 bytes |
コンパイル時間 | 4,865 ms |
コンパイル使用メモリ | 174,080 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-28 15:09:32 |
合計ジャッジ時間 | 7,867 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 2 WA * 15 RE * 4 |
コンパイルメッセージ
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
ソースコード
main::IO()main = interact $ palDecomp ['a'..'z'] . readpalDecomp::Char->Int->StringpalDecomp (c:cs) 1 = [c]palDecomp (c:cs) n| even n = [c] ++ palDecomp cs (n-1) ++ [c]| otherwise = [c] ++ palDecomp (c:cs) (div (n-1) 2 + 1) ++ [c]