結果
問題 |
No.2027 (1, 2, 3, …, N) 's Subset Sum
|
ユーザー |
![]() |
提出日時 | 2024-09-12 13:49:32 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 16 ms / 2,000 ms |
コード長 | 498 bytes |
コンパイル時間 | 1,964 ms |
コンパイル使用メモリ | 194,972 KB |
最終ジャッジ日時 | 2025-02-24 06:44:27 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int N; long S; cin>>N>>S; vector<int>ans; for(int n=N;n>=1;n--) { if(S>=n) { ans.push_back(n); S-=n; } } if(S>0) { cout<<"-1"<<endl; return 0; } reverse(ans.begin(),ans.end()); cout<<ans.size()<<endl; for(int i=0;i<ans.size();i++)cout<<ans[i]<<" \n"[i+1==ans.size()]; }