結果

問題 No.851 テストケース
ユーザー kpinkcatkpinkcat
提出日時 2023-08-22 16:17:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 1,008 ms
コンパイル使用メモリ 111,696 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 22:04:24
合計ジャッジ時間 1,909 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
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 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
using namespace std;


int main()
{
    long long n, a ,b ,c;
    string s;
    vector<int> v(3);
    set<int> add;
    cin >> n >> v[0];

    getline(cin, s);
    if (s.size()){
        cout << "assert" << endl;
        return 0;
    }
    for (int i = 1; i < 3; i++) cin >> v[i];
    add.insert(v[0] + v[1]);
    add.insert(v[1] + v[2]);
    add.insert(v[0] + v[2]);
    auto itr = add.begin();
    if (add.size()==3){
        itr++;
        cout << *itr << endl;
    }
    else if (add.size() == 2) cout << *itr << endl;
}
0