이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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... |