結果
問題 | No.542 1円玉と5円玉 |
ユーザー | Shawn stayC |
提出日時 | 2020-06-20 13:37:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 587 bytes |
コンパイル時間 | 1,713 ms |
コンパイル使用メモリ | 174,584 KB |
実行使用メモリ | 141,496 KB |
最終ジャッジ日時 | 2024-07-03 17:14:33 |
合計ジャッジ時間 | 5,543 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0; i<(n); i++) using namespace std; #define all(x) (x).begin(),(x).end() #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()); int main(){ int a,b; cin>>a>>b; vector<int> v; rep(i,a) v.push_back(1); rep(i,b) v.push_back(5); int n=v.size(); vector<int> ans; for(int bit=0; bit<(1<<n); bit++){ int sum=0; for(int i=0; i<n; i++){ if(bit &(1<<i)) sum+=v[i]; } ans.push_back(sum); } sort(all(ans)); UNIQUE(ans); ans.erase(remove(ans.begin(),ans.end(), 0),ans.end()); for(auto x:ans) cout << x << endl; }