Submission #857953

#TimeUsernameProblemLanguageResultExecution timeMemory
857953danikoynovNewspapers (CEOI21_newspapers)C++14
4 / 100
1 ms604 KiB
#include<bits/stdc++.h>
#define endl '\n'

using namespace std;
typedef long long ll;

void speed()
{
    ios_base::sync_with_stdio(NULL);
    cin.tie(NULL);
    cout.tie(NULL);
}

int n, m;
void solve()
{
    cin >> n >> m;
    if (n == 1)
    {
        cout << "YES" << endl;
        cout << 1 << endl;
        cout << 1 << endl;
        return;
    }
    cout << "YES" << endl;
    cout << 2 * n << endl;
    for (int i = 1; i <= n; i ++)
        cout << i << " ";
    for (int i = 1; i <= n; i ++)
        cout << i << " ";
    cout << endl;
}
int main()
{
    solve();
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...