結果

問題 No.851 テストケース
ユーザー ohuton_laboohuton_labo
提出日時 2019-07-26 21:32:00
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 727 bytes
コンパイル時間 1,207 ms
コンパイル使用メモリ 151,464 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-15 00:40:00
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
}
0