結果

問題 No.91 赤、緑、青の石
ユーザー startcppstartcpp
提出日時 2014-12-07 19:58:01
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 247 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 1,089 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-24 06:43:47
合計ジャッジ時間 9,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<functional>
#include<vector>
#include<queue>
#include<stack>
#include<set>
#include<map>
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
using namespace std;

int input[3];

int main(){
	int i;
	int ans = 0;
	cin >> input[0] >> input[1] >> input[2];
	
	for( i = 0; i < 20000000; i++ ){
		sort( input, input+3 );
		ans = max( ans, input[0] );
		//交換
		input[2]-=2;
		input[0]++;
	}
	cout << ans << endl;
	return 0;
}
0