結果
問題 | No.542 1円玉と5円玉 |
ユーザー | d_sei |
提出日時 | 2019-09-22 21:38:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 700 bytes |
コンパイル時間 | 717 ms |
コンパイル使用メモリ | 87,896 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-19 03:43:45 |
合計ジャッジ時間 | 1,237 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> #include <vector> #include<cmath> #include<iomanip> #include<queue> using namespace std; typedef long long int lint; int main() { int A, B; cin >> A >> B; int cnt = 0; int C = (A + 1) * (B + 1)+1; vector<int>vec(C); for (int ia = 0; ia <= A; ia++) { for (int ib = 0; ib <= B; ib++) { vec.at(cnt) = ia + ib * 5; cnt++; } } vec.at(C - 1) = 100000000; sort(vec.begin(), vec.end()); /*for (int ic = 0; ic < C; ic++) { cout << vec.at(ic) << ' '; }*/ for (int id = 1; id < C - 1; id++) { if (vec.at(id - 1) != vec.at(id) && vec.at(id) != vec.at(id + 1)) { cout << vec.at(id) << endl; } else { vec.at(id) -= 10000000; } } }