結果

問題 No.292 芸名
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-10-23 22:31:57
言語 Haskell
(9.6.2)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 380 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 164,768 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2023-09-30 05:11:18
合計ジャッジ時間 1,709 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,204 KB
testcase_01 AC 2 ms
7,020 KB
testcase_02 AC 2 ms
7,324 KB
testcase_03 AC 2 ms
7,100 KB
testcase_04 AC 3 ms
7,000 KB
testcase_05 AC 3 ms
7,000 KB
testcase_06 AC 3 ms
6,980 KB
testcase_07 AC 3 ms
6,952 KB
testcase_08 AC 2 ms
6,984 KB
testcase_09 AC 3 ms
7,104 KB
testcase_10 AC 3 ms
7,232 KB
testcase_11 AC 3 ms
7,108 KB
testcase_12 AC 3 ms
7,020 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Applicative ((<$>))

getStageName :: String -> Int -> Int -> String
getStageName s t u
    | t' == u'  = (take t' s) ++ (drop (t' + 1) s)
    | otherwise = (take t' s) ++ (take (u' - t' - 1) $ drop (t' + 1) s) ++ (drop (u' + 1) s)
    where [t', u'] = [min t u, max t u]

main = do
    [s, t, u] <- words <$> getLine
    putStrLn $ getStageName s (read t) (read u)
0