結果
問題 |
No.457 (^^*)
|
ユーザー |
|
提出日時 | 2020-07-17 13:11:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 855 bytes |
コンパイル時間 | 1,045 ms |
コンパイル使用メモリ | 107,580 KB |
最終ジャッジ日時 | 2025-01-11 21:44:58 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <queue> #include <cstdio> #include <ctime> #include <assert.h> #include <chrono> #include <random> #include <numeric> #include <set> using namespace std; typedef long long int ll; typedef unsigned long long ull; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); string s; cin >> s; string l="^^*0"; string r="*^^0"; int lres=0,rres=0; int n=s.size(); for(int i=0;i<n;i++){ if(s[i]=='('){ int lid=0,rid=0; for(int j=i+1;j<n;j++){ if(s[j]==')'){ if(lid==3)lres++; if(rid==3)rres++; } if(s[j]==l[lid])lid++; if(s[j]==r[rid])rid++; } } } printf("%d %d\n",lres,rres ); }