結果

問題 No.327 アルファベット列
ユーザー くれちーくれちー
提出日時 2016-12-30 23:25:33
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 379 bytes
コンパイル時間 13,790 ms
コンパイル使用メモリ 176,256 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-12-16 04:18:39
合計ジャッジ時間 115,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
12,928 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
12,800 KB
testcase_04 AC 2 ms
12,928 KB
testcase_05 AC 1 ms
10,496 KB
testcase_06 AC 3 ms
10,496 KB
testcase_07 AC 4 ms
13,728 KB
testcase_08 AC 8 ms
15,488 KB
testcase_09 AC 12 ms
13,056 KB
testcase_10 AC 44 ms
13,056 KB
testcase_11 AC 91 ms
15,012 KB
testcase_12 AC 464 ms
14,756 KB
testcase_13 AC 934 ms
13,056 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 2 ms
10,496 KB
testcase_31 AC 2 ms
12,928 KB
testcase_32 TLE -
testcase_33 AC 6 ms
15,744 KB
testcase_34 AC 40 ms
13,312 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

import Control.Monad

suc :: Char -> [Char]
suc 'Z' = "AA"
suc c = [succ c]

suc' :: [Char] -> [Char]
suc' [] = "A"
suc' s
    | length c == 2 = (suc' $ init s) ++ [last c]
    | otherwise = init s ++ c
    where
        c = suc $ last s

solve :: Integer -> String -> String
solve 0 s = s
solve n s = solve (pred n) (suc' s)

main = do
    n <- readLn
    putStrLn $ solve n "A"
0