結果

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

ソースコード

diff #

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

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