結果

問題 No.851 テストケース
ユーザー ttttan2ttttan2
提出日時 2019-07-27 00:22:54
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,215 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 151,720 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-15 05:16:06
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
//ios::sync_with_stdio(false);
//cin.tie(0);
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<pii,int> ppii;
typedef pair<int,pii> pipi;
typedef pair<ll,ll> pll;
typedef pair<pll,ll> plpl;
typedef tuple<ll,ll,ll> tl;
ll mod2=1000000007;
ll mod=998244353;
ll inf=1000000000000000000;
double pi=2*acos(0);
#define rep(i,m,n) for(int i=m;i<n;i++)
#define rrep(i,n,m) for(int i=n;i>=m;i--)
int dh[4]={1,-1,0,0};
int dw[4]={0,0,1,-1};
int ddh[8]={-1,-1,-1,0,0,1,1,1};
int ddw[8]={-1,0,1,-1,1,-1,0,1};
ll lmax(ll a,ll b){
    if(a<b)return b;
    else return a;
}
ll lmin(ll a,ll b){
    if(a<b)return a;
    else return b;
}
int main(){
    int n;cin>>n;
    string s;
    getline(cin,s);
    rep(i,0,s.size()){
        if(s[i]==' '){
            cout<<"assert"<<endl;
            return 0;
        }
    }
    ll a=0;
    ll now=1;
    rrep(i,s.size()-1,0){
        ll y=s[i]-'0';
        a+=now*y;
        now*=10;
    }
    ll b,c;cin>>b>>c;
    vector<ll> v;
    v.push_back(a+b);
    v.push_back(a+c);
    v.push_back(b+c);
    sort(v.begin(),v.end());
    v.erase(unique(v.begin(),v.end()),v.end());
    reverse(v.begin(),v.end());
    cout<<v[1]<<endl;
}
0