結果

問題 No.457 (^^*)
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-17 14:34:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 794 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 202,024 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-09-24 19:25:32
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,888 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 53 ms
6,944 KB
testcase_11 AC 220 ms
6,944 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    string s;
    cin>>s;
    int n=s.size();
    int left,right;
    left=right=0;
    for (int i=0;i<n;i++)
        for (int j=i+1;j<n;j++) {
            if (s[i]!='('||s[j]!=')') continue;
            int eye=0;
            for (int k=i+1;k<j;k++) {
                if (s[k]=='^') eye++;
                else if (s[k]=='*'&&eye>=2) {
                    left++;
                    break;
                }
            }
            eye=0;
            for (int k=j-1;k>i;k--) {
                if (s[k]=='^') eye++;
                else if (s[k]=='*'&&eye>=2) {
                    right++;
                    break;
                }
            }
        }
    cout<<left<<' '<<right<<endl;
    return 0;
}
0