# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
149099 | ----MIT합격선---- (#200) | HicCup (FXCUP4_hiccup) | C++17 | 23 ms | 3328 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "hiccup.h"
#include <utility>
#include <stack>
using namespace std;
typedef pair<char, int> pci;
bool check(const string& S, int x){
stack<char> T;
int n = S.size();
for(int i=0; i<n; i++){
if(S[i]=='H') T.push('(');
else{
if(T.empty()) return false;
if(T.top()=='(') T.pop();
}
}
return T.empty();
/*
stack<pci> T;
bool series = false;
for(int i=0, st=0; i<n; i++){
if(S[i]=='H'){
st = 1;
}
if(S[i]=='C'){
st = 2;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |