結果

問題 No.115 遠足のおやつ
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2019-08-22 05:13:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,008 bytes
コンパイル時間 662 ms
コンパイル使用メモリ 90,616 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-19 13:52:51
合計ジャッジ時間 1,970 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1 ms
6,944 KB
testcase_30 WA -
testcase_31 AC 2 ms
6,944 KB
testcase_32 WA -
testcase_33 AC 1 ms
6,944 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 1 ms
6,940 KB
testcase_41 AC 2 ms
6,944 KB
testcase_42 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;


int main() {
    
    int N,D,K;
    cin >> N >> D >> K;
    
    vector<int> V(K);
    int sum = 0;

    for ( int i = 0; i < K; i++ ) {
        V[i] = i+1;
        sum += V[i];
    }

    if ( sum > D ) { cout << -1 << endl; return 0; }

    int pre = INT_MAX;
    for ( int i = K-1; i >= 0; i-- ) {
        if ( sum == D ) { break; }

        while ( V[i] < N && V[i] < pre ) {
            V[i]++;
            sum++;
            if ( sum == D ) { break; }
        }
        pre = V[i];
    }

    if ( sum != D ) { cout << -1 << endl; }
    else {
        for ( int i = 0; i < K; i++ ) {
            cout << V[i];
            if ( i != K-1 ) { cout << " "; }
        }
        cout << endl;
    }


    return 0;
}
0