結果

問題 No.2870 Dice Making
ユーザー Raihanul IslamRaihanul Islam
提出日時 2024-09-06 22:56:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 69,252 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-06 22:56:44
合計ジャッジ時間 2,193 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main()
{
    int N, K;
    cin >> N >> K;

    // Case where it's impossible to construct such a dice
    if (K > N)
    {
        cout << "-1" << endl;
        return 0;
    }

    // Construct the dice configuration
    vector<int> result(N);
    for (int i = 0; i < K; ++i)
    {
        result[i] = i + 1; // Assign unique values from 1 to K
    }

    for (int i = K; i < N; ++i)
    {
        result[i] = 1; // Fill the rest with 1
    }

    // Output the result
    for (int i = 0; i < N; ++i)
    {
        cout << result[i] << " ";
    }
    cout << endl;

    return 0;
}
0