Submission #683878

#TimeUsernameProblemLanguageResultExecution timeMemory
683878opPONice sequence (IZhO18_sequence)C++17
15 / 100
7 ms1144 KiB
#pragma GCC optimize("O3,unroll-loops")
#include <bits/stdc++.h>

using namespace std;

#define int long long
#define f first
#define s second
#define pb push_back
#define ld long double
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define vec vector

using ll = long long;
using pii = pair<int, int>;
using pll = pair<ll, ll>;

mt19937_64 gen(chrono::steady_clock::now().time_since_epoch().count());
const ld eps = 1e-6;
const int mod = 998244353;
const int oo = 2e9;
const ll OO = 2e18;
const int N = 1e5 + 10;

void solve()
{
    int n, m;
    cin >> n >> m;
    int neg = 1;
    if (n > m)
    {
        swap(n, m);
        neg *= -1;
    }
    if (m % n == 0)
    {
        vec<int> ans;
        for (int i = 1; i < m; i++) ans.pb(-1);
        cout << sz(ans) << "\n";
        for (int &x : ans) cout << x * neg << " ";
        cout << "\n";
        return;
    }
    vec<int> ans;
    for (int i = 1; i <= m; i++)
    {
        if (i & 1) ans.pb(1e9 - 1);
        else ans.pb(-1e9);
    }
    cout << sz(ans) << "\n";
    for (int &x : ans) cout << x * neg << " ";
    cout << "\n";
}

int32_t main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int t;
    cin >> t;
    while (t--)
        solve();
    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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...