結果
問題 | No.115 遠足のおやつ |
ユーザー | maine_honzuki |
提出日時 | 2020-05-16 22:29:23 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 582 bytes |
コンパイル時間 | 1,530 ms |
コンパイル使用メモリ | 160,252 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2025-01-03 01:56:01 |
合計ジャッジ時間 | 2,750 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 40 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, D, K; cin >> N >> D >> K; auto can_buy = [&](int x, int d, int k) { int MIN = 0, MAX = 0; for (int i = 0; i < k; i++) { MIN += x + i; MAX += N - i; } return MIN <= d && MAX >= d; }; if (can_buy(1, D, K)) { for (int i = 1; i <= N; i++) { if (can_buy(i + 1, D - i, K - 1)) { cout << i << " "; D -= i; K--; } } } else cout << -1 << endl; }