結果

問題 No.550 夏休みの思い出(1)
ユーザー ふっぴーふっぴー
提出日時 2017-07-28 23:53:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,249 bytes
コンパイル時間 1,689 ms
コンパイル使用メモリ 169,212 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-04-18 13:42:34
合計ジャッジ時間 8,089 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define DEBUG(x) cout<<#x<<": "<<x<<endl;
#define DEBUG_VEC(v) cout<<#v<<":";for(int i=0;i<v.size();i++) cout<<" "<<v[i]; cout<<endl

typedef long long ll;
#define vi vector<int>
#define vl vector<ll>
#define vii vector< vector<int> >
#define vll vector< vector<ll> >
#define vs vector<string>
#define pii pair<int,int>
#define pis pair<int,string>
#define psi pair<string,int>
const int inf=1000000001;
const ll INF=1e16;
#define MOD 1000000007
#define mod 1000000009
#define pi 3.14159265358979323846
#define Sp(p) cout<<setprecision(15)<<fixed<<p<<endl;
int dx[4]={1,0,-1,0}, dy[4]={0,1,0,-1};


ll func1(ll x,ll a,ll b,ll c){
	return pow(x,3)+a*pow(x,2)+b*x+c;
}

ll func2(ll y,ll x,ll a,ll b,ll c){
	return pow(y,2)+(a+x)*y-c/x;
}

int main(){
	ll a,b,c,x,y,z;
	cin>>a>>b>>c;
	x=1;
	while(1){
		if(c%x==0){
			if(func1(x,a,b,c)==0){
				break;
			}
			if(func1((-1)*x,a,b,c)==0){
				x*=-1;
				break;
			}
		}
		x++;
	}
	y=abs(x);
	while(1){
		if((c/x)%y==0){
			if(func2(y,x,a,b,c)==0){
				break;
			}
			if(func2(y*(-1),x,a,b,c)==0){
				y*=-1;
				break;
			}
		}
		y++;
	}
	z = (-1)*c/(x*y);
	vl s={x,y,z};
	sort(s.begin(),s.end());
	for(int i=0;i<3;i++){
		cout<<s[i]<<" ";
	}
	cout<<endl;
}
0