# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1176239 | sofija6 | Homework (CEOI22_homework) | C++20 | 992 ms | 589824 KiB |
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll n;
pair<ll,ll> Solve(string s)
{
if (s.size()==1)
return {1,n};
ll t=0;
if (s[1]=='a')
t=1;
string arg0="",arg1="";
ll pos=4,cnt=0;
while (pos<s.size())
{
if (s[pos]=='(')
cnt++;
else if (s[pos]==')')
cnt--;
if (!cnt && s[pos]==',')
{
pos++;
break;
}
arg0+=s[pos++];
}
while (pos<s.size()-1)
arg1+=s[pos++];
pair<ll,ll> x=Solve(arg0),y=Solve(arg1);
if (t)
# | 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... |