結果

問題 No.457 (^^*)
ユーザー face4face4
提出日時 2018-07-23 16:29:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 991 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 70,528 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-12-29 14:00:02
合計ジャッジ時間 14,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,576 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 AC 1 ms
10,144 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 2 ms
8,576 KB
testcase_06 AC 2 ms
10,496 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 18 ms
5,248 KB
testcase_09 AC 130 ms
5,248 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 144 ms
5,248 KB
testcase_14 AC 138 ms
5,248 KB
testcase_15 TLE -
testcase_16 AC 142 ms
5,248 KB
testcase_17 AC 140 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 3 ms
8,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;

int main(){
    string s;
    cin >> s;

    vector<int> leftParen, rightParen;
    for(int i = 0; i < s.length(); i++){
        if(s[i] == '(') leftParen.push_back(i);
        if(s[i] == ')') rightParen.push_back(i);
    }

    int left = 0, right = 0;
    for(int x : leftParen){
        for(int y : rightParen){
            if(y < x)   continue;
            bool asta = false;
            int wedge = 0;
            for(int z = x+1; z < y; z++){
                if(s[z] == '*') asta = true;
                if(s[z] == '^' && asta) wedge++;
            }
            if(asta && wedge >= 2)  right++;
            
            asta = false;
            wedge = 0;
            for(int z = y-1; z > x; z--){
                if(s[z] == '*') asta = true;
                if(s[z] == '^' && asta) wedge++;
            }
            if(asta && wedge >= 2)  left++;
        }
    }

    cout << left << " " << right << endl;

    return 0;
}
0