結果
問題 | No.542 1円玉と5円玉 |
ユーザー | dgd1724 |
提出日時 | 2017-08-12 10:41:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 634 bytes |
コンパイル時間 | 649 ms |
コンパイル使用メモリ | 70,192 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 04:45:42 |
合計ジャッジ時間 | 1,285 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 3 ms
5,248 KB |
ソースコード
#include <iostream> #include <fstream> #include <string> #include <vector> #include <algorithm> int main(void) { //std::ifstream inf("Text.txt"); std::cin.rdbuf(inf.rdbuf()); int A = 0, B = 0; std::cin >> A >> B; std::vector<int> ans; int sum = 0; for (int i = 0; i <= B; i++) { sum += 5 * i; for (int j = 0; j <= A; j++) { sum += j; if (sum != 0) { ans.push_back(sum); } sum -= j; } sum = 0; } std::sort(ans.begin(), ans.end()); ans.erase(std::unique(ans.begin(), ans.end()), ans.end()); for (auto itr = ans.begin(); itr != ans.end(); itr++) { std::cout << *itr << std::endl; } return 0; }