結果

問題 No.457 (^^*)
ユーザー cielciel
提出日時 2016-12-08 21:27:33
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 553 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-05-06 09:44:51
合計ジャッジ時間 5,815 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
17,792 KB
testcase_01 AC 88 ms
12,288 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 88 ms
12,160 KB
testcase_06 AC 91 ms
12,288 KB
testcase_07 AC 96 ms
12,032 KB
testcase_08 AC 101 ms
12,544 KB
testcase_09 AC 122 ms
12,544 KB
testcase_10 AC 246 ms
12,544 KB
testcase_11 AC 687 ms
12,544 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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