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<bits/stdc++.h>
using namespace std;
void fun()
{
int n;
cin>>n;
int a = 0, b = 0, c = 0;
for(int i = 1; i <= n; i++)
{
string s, h;
cin>>s>>h;
if(s=="section")
{
a++;
b = 0;
c = 0;
cout<<a<<" "<<h<<endl;
}
else if(s=="subsection")
{
b++;
c = 0;
cout<<a<<"."<<b<<" "<<h<<endl;
}
else
{
c++;
cout<<a<<"."<<b<<"."<<c<<" "<<h<<endl;
}
}
}
int main()
{
int ttt = 1;
//cin>>ttt;
while(ttt--)
fun();
}
# | 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... |