Submission #588533

# Submission time Handle Problem Language Result Execution time Memory
588533 2022-07-03T13:24:52 Z jasmin Newspapers (CEOI21_newspapers) C++14
0 / 100
0 ms 336 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long


signed main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int n, m;
    cin >> n >> m;
    for(int i=0; i<m; i++){
        int a, b;
        cin >> a >> b;
    }

    cout << "YES\n";
    vector<int> a;
    for(int i=0; i<n-1; i++){
        a.push_back(i);
    }
    for(int i=n-2; i>=1; i--){
        a.push_back(i);
    }

    cout << a.size() << "\n";
    for(auto e: a){
        cout << e+1 << " ";
    }
    cout << "\n";
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 336 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 212 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 336 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -