結果
問題 | No.457 (^^*) |
ユーザー | butter_roll |
提出日時 | 2016-12-14 00:55:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 660 bytes |
コンパイル時間 | 833 ms |
コンパイル使用メモリ | 69,700 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-11-30 02:02:54 |
合計ジャッジ時間 | 7,655 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
8,448 KB |
testcase_02 | AC | 2 ms
8,448 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 5 ms
5,248 KB |
testcase_09 | AC | 9 ms
5,248 KB |
testcase_10 | AC | 45 ms
5,248 KB |
testcase_11 | AC | 180 ms
5,248 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 6 ms
5,248 KB |
testcase_14 | AC | 4 ms
5,248 KB |
testcase_15 | TLE | - |
testcase_16 | AC | 5 ms
5,248 KB |
testcase_17 | AC | 4 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
8,448 KB |
ソースコード
#include <cstdio> #include <algorithm> #include <iostream> #include <vector> using namespace std; int main(void){ int l1,l2,l3,l4,l5; int r1,r2,r3,r4,r5; string s; int resl,resr; resl=resr=0; cin>>s; l1=l2=l3=l4=l5=0; r1=r2=r3=r4=r5=0; for(l1=s.find("(",0);l1!=-1;l1=s.find("(",l1+1)){ for(l5=s.find(")",l1+1);l5!=-1;l5=s.find(")",l5+1)){ l2=s.find("^",l1+1); r2=s.find("*",l1+1); l3=s.find("^",l2+1); r3=s.find("^",r2+1); l4=s.find("*",l3+1); r4=s.find("^",r3+1); if(l2!=-1&&l3!=-1&&l4!=-1&&l4<l5) resl++; if(r2!=-1&&r3!=-1&&r4!=-1&&r4<l5) resr++; } } cout<<resl<<" "<<resr<<endl; return 0; }