結果
問題 | No.457 (^^*) |
ユーザー | ciel |
提出日時 | 2016-12-08 21:19:40 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 464 bytes |
コンパイル時間 | 57 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 18,048 KB |
最終ジャッジ日時 | 2024-05-06 09:41:37 |
合計ジャッジ時間 | 6,678 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
17,664 KB |
testcase_01 | AC | 80 ms
12,032 KB |
testcase_02 | AC | 78 ms
12,288 KB |
testcase_03 | AC | 75 ms
12,288 KB |
testcase_04 | AC | 75 ms
12,288 KB |
testcase_05 | AC | 75 ms
12,160 KB |
testcase_06 | AC | 76 ms
12,160 KB |
testcase_07 | WA | - |
testcase_08 | AC | 149 ms
12,160 KB |
testcase_09 | AC | 348 ms
12,160 KB |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
Syntax OK
ソースコード
#!/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>=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('()',')('))]*' '