結果
問題 | No.457 (^^*) |
ユーザー | suppy193 |
提出日時 | 2017-01-12 10:40:24 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 589 bytes |
コンパイル時間 | 163 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 41,536 KB |
最終ジャッジ日時 | 2024-12-21 10:08:59 |
合計ジャッジ時間 | 20,536 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
18,848 KB |
testcase_01 | AC | 103 ms
24,192 KB |
testcase_02 | AC | 107 ms
18,728 KB |
testcase_03 | AC | 110 ms
41,288 KB |
testcase_04 | AC | 104 ms
18,980 KB |
testcase_05 | AC | 104 ms
24,448 KB |
testcase_06 | AC | 105 ms
18,724 KB |
testcase_07 | AC | 116 ms
41,536 KB |
testcase_08 | AC | 143 ms
12,416 KB |
testcase_09 | AC | 222 ms
12,032 KB |
testcase_10 | AC | 885 ms
12,032 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 504 ms
27,904 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 1,115 ms
27,904 KB |
testcase_18 | AC | 104 ms
11,904 KB |
testcase_19 | AC | 104 ms
24,576 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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| flag_l = false flag_r = false if s[i] == '(' (i+4...s.length).each do |j| if s[j] == ')' #puts s[i..j] if !flag_l if re_l.match(s[i..j]) count_l += 1 flag_l = true end else count_l += 1 end if !flag_r if re_r.match(s[i..j]) count_r += 1 flag_r = true end else count_r += 1 end end end end end print "#{count_l} #{count_r}\n"