結果

問題 No.457 (^^*)
ユーザー ciel
提出日時 2016-12-08 21:18:38
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-11-28 15:24:39
合計ジャッジ時間 13,945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 5 TLE * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
def solve(s)
	al=[]
	ar=[]
	ah=[0]*s.size
	as=[]
	s.size.times{|i|
		if s[i]==?(
			al<<i
		elsif s[i]==?)
			ar<<i
		elsif s[i]=='^'
			ah[i]+=1
		elsif s[i]=='*'
			as<<i
		end
	}
	(1...s.size).each{|i|ah[i]+=ah[i-1]}
	ret=0
	al.each{|l|ar.each{|r|next if l+3>=r
		hidx=(l...r).bsearch{|i|ah[i]>=ah[l]+2}
		next if !hidx
		s=as.bsearch{|e|e>=hidx}||s.size
		ret+=1 if s<r
	}}
	ret
end
s=gets.chomp
puts [solve(s),solve(s.reverse.tr('()',')('))]*' '
0