Submission #967640

# Submission time Handle Problem Language Result Execution time Memory
967640 2024-04-22T14:42:40 Z anton Newspapers (CEOI21_newspapers) C++17
0 / 100
0 ms 348 KB
#include<bits/stdc++.h>

using namespace std;
#define int long long
#define pii pair<int, int>
const int MAX_N = 1e3;
vector<int> adj[MAX_N];

signed main(){
    cin.tie(NULL);
    ios_base::sync_with_stdio(false);
    int n, m;
    cin>>n>>m;

    cout<<"YES"<<endl;
    cout<<2*(n-1)<<endl;
    for(int i = 0; i<n-1; i++){
        cout<<i+1<<" ";
    }
    for(int i = n-2; i>=0; i--){
        cout<<i+1<<" ";
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 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 348 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 344 KB Integer parameter [name=k] equals to 0, violates the range [1, 5]
2 Halted 0 ms 0 KB -