結果
問題 | No.542 1円玉と5円玉 |
ユーザー |
![]() |
提出日時 | 2017-08-25 08:36:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 253 bytes |
コンパイル時間 | 1,602 ms |
コンパイル使用メモリ | 172,632 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-15 15:29:36 |
合計ジャッジ時間 | 2,061 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include<bits/stdc++.h>using namespace std;int main(){int a,b;set<int> se;cin >> a >> b;for(int i=0;i<=a;i++){for(int j=0;j<=b;j++){se.insert(i+j*5);}}se.erase(se.begin());for(int x:se)cout << x << endl;return 0;}