Submission #698246

#TimeUsernameProblemLanguageResultExecution timeMemory
698246ancuber1031Kaučuk (COCI21_kaucuk)C++14
50 / 50
1 ms212 KiB
#include <bits/stdc++.h>
using namespace std;

int main() {
    int n; cin>>n;
    int x = 0, y = 0, z = 0;
    while(n--) {
        string a, b;
        cin>>a>>b;
        if (a == "section") {
            x++, y =0, z = 0;
            cout<<x<<' ';
            cout<<b<<endl;
        } else if (a == "subsection") {
            y++, z = 0;
            cout<<x<<'.'<<y<<' '<<b<<endl;
        } else {
            z++;
            cout<<x<<'.'<<y<<'.'<<z<<' '<<b<<endl;
        }
    }
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...