結果

問題 No.115 遠足のおやつ
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-11-01 22:51:05
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 892 bytes
コンパイル時間 2,977 ms
コンパイル使用メモリ 246,588 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-01 22:51:10
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
#define For(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) For(i, 0, n)
#define rFor(i, a, b) for(int i = a; i >= b; i--)
#define ALL(v) (v).begin(), (v).end()
#define rALL(v) (v).rbegin(), (v).rend()
using namespace std;

using lint = long long;
using ld = long double;

int INF = 2000000000;
lint LINF = 1000000000000000000;

int main() {
    int n, d, k;
    cin >> n >> d >> k;
    int mn = (1 + k) * k / 2;
    int mx = (n - k + 1 + k) * k / 2;
    if (!(mn <= d && d <= mx)) {
        cout << -1 << endl;
        return 0;
    }
    vector<int> ans(k);
    rep(i, k) {
        ans[i] = i + 1;
    }
    ans.back() += d - mn;
    rFor(i, k - 1, 1) {
        if (ans[i] > n) {
            int diff = ans[i] - n;
            ans[i] = n;
            ans[i - 1] += diff;
        }
    }
    rep(i, k) {
        cout << ans[i] << " ";
    }
    cout << endl;
}
0