| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1083030 | weakweakweak | Homework (CEOI22_homework) | C++17 | 568 ms | 524288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using pii=pair<int,int>;
#define fs first
#define sc second
int meow = 0;
pii f() {
char c, cc;
cin >> c;
if (c == '?') {
meow++;
return {0, 0};
}
cin >> cc >> c >> c;
pii p1 = f();
cin >> c;
pii p2 = f();
if (cc=='a') return {p1.fs+p2.fs+1, min(p1.sc,p2.sc)};
else return {min(p1.fs,p2.fs), p1.sc+p2.sc+1};
}
int main () {
ios_base::sync_with_stdio(false); cin.tie(0);
pii p = f();
cout << meow - p.fs - p.sc << '\n';
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
