結果

問題 No.592 括弧の対応 (2)
ユーザー ffmffm
提出日時 2017-11-18 21:34:07
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 7,445 ms
コンパイル使用メモリ 176,180 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-05-04 04:47:26
合計ジャッジ時間 8,924 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 164 ms
47,616 KB
testcase_03 AC 177 ms
52,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

f [] is _ ks _ = ([],ks)
f ('(':s) is j ks n = f s (j:is) (j+1) ks (n+1)
f (')':s) (i:is) j ks n = (c++i:a,d)
  where (a,b) = f s is (j+1) (j:ks) 0
        (c,d) = splitAt n b
main = do
  getLine
  s <- getLine
  mapM_ print $ fst $ f s [] 1 [] 0
0