結果

問題 No.22 括弧の対応
ユーザー momen999momen999
提出日時 2019-03-06 00:05:32
言語 Haskell
(9.10.1)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 5,363 ms
コンパイル使用メモリ 175,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 07:41:12
合計ジャッジ時間 6,161 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

rInt :: String -> Int
rInt = read

solve :: Int -> String -> Int
solve k s
    | last t == '(' = op 1 k d
    | otherwise     = cp 1 k (reverse (init t))
    where
        t = take k s
        d = drop k s

op :: Int -> Int -> String -> Int
op 0 k _ = k
op i k (x:xs)
    | x == ')'  = op (i - 1) (k + 1) xs
    | otherwise = op (i + 1) (k + 1) xs

cp :: Int -> Int -> String -> Int
cp 0 k _ = k
cp i k (x:xs)
    | x == '('  = cp (i - 1) (k - 1) xs
    | otherwise = cp (i + 1) (k - 1) xs

{--}
main = do
    [n, k] <- map rInt . words <$> getLine
    s <- getLine
    print $ solve k s
0