Submission #847087

# Submission time Handle Problem Language Result Execution time Memory
847087 2023-09-09T06:41:25 Z GrandTiger1729 Nice sequence (IZhO18_sequence) C++17
0 / 100
1 ms 348 KB
#include <bits/stdc++.h>
using namespace std;

int main()
{
    cin.tie(0)->sync_with_stdio(0);
    int t; cin >> t;
    while (t--)
    {
        int n, m; cin >> n >> m;
        if (n == m)
        {
            cout << n - 1 << '\n';
            for (int i = 0; i < n - 1; i++)
                cout << 1 << " \n"[i == n - 2];
            continue;
        }
        bool flag = 0;
        if (n < m)
        {
            swap(n, m);
            flag = 1;
        }
        vector<int> ans;
        if (n % m == 0)
        {
            ans = vector<int>(n - 1, 1);
            if (flag)
            {
                for (int &i : ans)
                    i = -i;
            }
            for (int i = 0; i < ans.size(); i++)
                cout << ans[i] << " \n"[i + 1 == ans.size()];
            continue;
        }
        if (flag)
        {
            for (int &i : ans)
                i = -i;
        }
    }
    return 0;
}

Compilation message

sequence.cpp: In function 'int main()':
sequence.cpp:33:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   33 |             for (int i = 0; i < ans.size(); i++)
      |                             ~~^~~~~~~~~~~~
sequence.cpp:34:47: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 |                 cout << ans[i] << " \n"[i + 1 == ans.size()];
      |                                         ~~~~~~^~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Jury has the better answer : jans = 1, pans = -1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Jury has the better answer : jans = 3, pans = 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Jury has the better answer : jans = 2, pans = 1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Jury has the better answer : jans = 3, pans = -1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Jury has the better answer : jans = 1, pans = -1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Jury has the better answer : jans = 1, pans = -1
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Jury has the better answer : jans = 1, pans = -1
2 Halted 0 ms 0 KB -