結果
問題 | No.542 1円玉と5円玉 |
ユーザー | hexagon_emil |
提出日時 | 2017-07-28 07:51:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 514 bytes |
コンパイル時間 | 536 ms |
コンパイル使用メモリ | 62,832 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 04:44:04 |
合計ジャッジ時間 | 2,841 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
#define ll long long #define vi vector<int> #define debug(x) cout<<#x<<": "<<x<<endl; #define all(x) (x).begin(),(x).end() ///////////////////////////////////////////define///////// #include<iostream> #include<vector> #include<string> #include<algorithm> #include<iterator> using namespace std; int main(){ ll a,b; cin>>a>>b; vi v(v.max_size()); for(int i=0;i<a;i++){ v.push_back(1); } for(int i=1;i<b;i++){ v[i*5]=1; } for(int i=0;i<a+b*5;i++){ if(v[i]==1){ cout<<i+1<<endl; } } return 0; }