結果

問題 No.542 1円玉と5円玉
ユーザー hogeover30
提出日時 2018-01-17 20:02:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 198,500 KB
最終ジャッジ日時 2025-01-05 07:37:01
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int a, b; cin>>a>>b;
    set<int> s;
    for(int i=0; i<=a; ++i)
        for(int j=0; j<=b; ++j)
            if (i>0 or j>0) s.insert(i+5*j);
    for(auto& e: s) cout<<e<<endl;
}
0