Submission #1351358

#TimeUsernameProblemLanguageResultExecution timeMemory
1351358cholpon1Monster-Go (EGOI25_monstergo)C++20
2 / 100
0 ms344 KiB
#include <bits/stdc++.h>
using namespace std;

int main() {
    cin.tie(0)->sync_with_stdio(0);
    int n;
    cin >> n;
    if (n == 2) {
        cout << "0 1 2 3 4 5 6 7 8 9 10 11 38 39 40 41 42 43 44 45 46 47 48 49\n";
    } else  {
        for (int i = 0; i <= 49; i++) {
            cout << i << " ";
        }
        cout << "\n";
    }
    
    
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...