結果

問題 No.457 (^^*)
ユーザー suppy193suppy193
提出日時 2017-01-11 16:57:34
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 403 bytes
コンパイル時間 570 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 46,848 KB
最終ジャッジ日時 2024-12-21 09:50:09
合計ジャッジ時間 24,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
18,976 KB
testcase_01 AC 88 ms
28,672 KB
testcase_02 AC 86 ms
18,980 KB
testcase_03 AC 85 ms
33,792 KB
testcase_04 AC 84 ms
18,980 KB
testcase_05 AC 87 ms
44,488 KB
testcase_06 AC 87 ms
18,976 KB
testcase_07 AC 114 ms
25,472 KB
testcase_08 AC 278 ms
20,516 KB
testcase_09 AC 1,382 ms
46,848 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,061 ms
32,256 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 1,937 ms
32,768 KB
testcase_18 AC 86 ms
12,160 KB
testcase_19 AC 85 ms
24,448 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.strip
#puts s

re_l = /\^.*\^.*\*/
re_r = /\*.*\^.*\^/

#p re_l.match(s)
#p re_r.match(s)

count_l = 0
count_r = 0
(0...s.length - 1).each do |i|
	if s[i] == '('
		(i...s.length).each do |j|
			if s[j] == ')'
				#puts s[i..j]
				if re_l.match(s[i..j])
					count_l += 1
				end
				if re_r.match(s[i..j])
					count_r += 1
				end
			end
		
		end
		
	end
	
end
print "#{count_l} #{count_r}\n"
0