結果

問題 No.481 1から10
ユーザー kichirb3kichirb3
提出日時 2018-02-27 11:12:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 723 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 81,032 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 21:27:02
合計ジャッジ時間 1,709 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.481 1から10
// https://yukicoder.me/problems/no/481
//

#include <iostream>
#include <vector>
#include <algorithm>
#include <set>

using namespace std;
int solve(vector<int> &written);


int main() {
    const int WRITTEN_NUMBER = 9;
    vector<int> written(WRITTEN_NUMBER);
    for (auto i = 0; i < WRITTEN_NUMBER; i++)
        cin >> written[i];

    int ans = solve(written);
    cout << ans << endl;
}

int solve(vector<int> &written) {
    vector<int> e = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10};
    vector<int> res;
    sort(written.begin(), written.end());
    set_difference(e.begin(), e.end(), written.begin(), written.end(), inserter(res, res.end())); // e - writtenの差集合を求める
    return res[0];
}
0