結果
問題 | No.851 テストケース |
ユーザー | ohuton_labo |
提出日時 | 2019-07-26 21:32:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 727 bytes |
コンパイル時間 | 1,305 ms |
コンパイル使用メモリ | 167,148 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-02 06:41:25 |
合計ジャッジ時間 | 2,054 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | WA | - |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define lli long long int #define REP(i,s,l) for(lli i=s;i<l;i++) #define DEBUG 0 #define INF (1LL<<50) #define MOD 1000000007 signed main(){ lli n; cin>>n; vector<lli> a(n); string s; cin.ignore(); getline(cin,s); /*assertチェック*/ lli cnt=0; for(lli i=0;i<s.size();i++){ if(s.at(i)==' ')cnt++; } if(cnt==2){ cout<<"assert"<<endl; return 0; } a[0]=0; /*問題ない場合は数字に変換する*/ for(lli i=0;i<s.size();i++){ a[0]*=10; a[0] += s[0]-'0'; } cin>>a[1]; cin>>a[2]; set<lli> se; se.insert(a[0]+a[1]); se.insert(a[1]+a[2]); se.insert(a[2]+a[0]); auto itr = se.end(); itr--; itr--; cout<<*itr<<endl; return 0; }