結果
問題 | No.542 1円玉と5円玉 |
ユーザー | mmn15277198 |
提出日時 | 2020-06-07 00:28:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 444 bytes |
コンパイル時間 | 950 ms |
コンパイル使用メモリ | 98,280 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-06 03:22:40 |
合計ジャッジ時間 | 1,573 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 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 | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 4 ms
6,940 KB |
ソースコード
#include<iostream> #include<math.h> #include<string.h> #include<vector> #include<algorithm> #include<iomanip> #include<deque> #include<map> using namespace std; int main(){ int a,b; cin >> a >> b; vector<int> c; for(int i=0;i<=a;i++){ for(int j=0;j<=b;j++){ c.push_back(i+5*j); } } sort(c.begin(),c.end()); c.erase(unique(c.begin(),c.end()),c.end()); for(int i=1;i<c.size();i++){ cout << c[i] << endl; } return 0; }