結果

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

ソースコード

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<long long> v(3);
    set<long long> 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