結果

問題 No.851 テストケース
ユーザー kpinkcat
提出日時 2023-08-22 16:17:48
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 666 bytes
コンパイル時間 930 ms
コンパイル使用メモリ 106,724 KB
最終ジャッジ日時 2025-02-16 12:18:16
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 16 WA * 4
権限があれば一括ダウンロードができます

ソースコード

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