結果

問題 No.2870 Dice Making
ユーザー ff fff f
提出日時 2024-09-06 23:27:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 203,220 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-06 23:28:12
合計ジャッジ時間 3,627 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define lli long long
#define endl '\n'
#define loop(i, n) for (int i = 0; i < n; i++)
#define pool(i, n) for (int i = n - 1; i >= 0; i--)
#define rep(i, a, b) for (int i = a; i <= b; i++)
#define per(i, b, a) for (int i = b; i >= a; i--)
#define all(a) (a).begin(), (a).end()
#define vint vector<int>
#define vlli vector<long long>
#define pint pair<int, int>
#define memfill(arr, val) memset(arr, val, sizeof(arr))

void solve()
{
    int n, k;
    cin >> n >> k;

    if (n % k != 0)
    {
        cout << -1 << endl;
        return;
    }

    int cnt = n / k;
    vint ans(n);
    for (int i = 0; i < cnt; i++)
        ans[i] = 1;
    for (int i = cnt; i < n; i++)
        ans[i] = 2;

    for (auto x : ans)
        cout << x << " ";
    cout << endl;
}

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

    int t = 1;
    // cin >> t;

    while (t--)
    {
        solve();
    }

    return 0;
}
0