結果
| 問題 | No.550 夏休みの思い出(1) |
| コンテスト | |
| ユーザー |
kotamanegi
|
| 提出日時 | 2017-07-28 23:30:41 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,700 bytes |
| 記録 | |
| コンパイル時間 | 1,191 ms |
| コンパイル使用メモリ | 103,736 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-10 05:09:58 |
| 合計ジャッジ時間 | 5,316 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 53 WA * 2 |
ソースコード
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream>
#include <random>
#include<map>
#include <iomanip>
#include <time.h>
#include <stdlib.h>
#include <list>
#include <typeinfo>
#include <list>
#include <set>
#include<fstream>
using namespace std;
#define eps 0.000000001
#define LONG_INF 10000000000000000
#define GOLD 1.61803398874989484820458
#define MAX_MOD 1000000007
#define f(n) for(int i=0;i<n;++i)
#define REP(i,n) for(long long i = 0;i < n;++i)
#define double long double
double a, b, c;
double calc_f(double x) {
double ans = x;
ans += a;
ans *= x;
ans += b;
ans *= x;
ans += c;
return ans;
}
double calc_fd(double x) {
double ans = 3 * x;
ans += 2 * a;
ans *= x;
ans += b;
return ans;
}
int main() {
#define int long long
cin >> a >> b >> c;
double n = 0;
int cnter = 0;
failed:;
for (int i = 0;i < 5000;++i) {
n = n - (calc_f(n) / calc_fd(n));
}
//nは解の一つ
if ((long long)n == 0) {
if(cnter % 2 == 0){
n = -10000*(cnter+1);
}else n = 10000 * (cnter+1);
cnter += 1;
goto failed;
}
vector<long long> ans;
ans.push_back((long long)n);
double q = 1;
double w = a + ans[0];
double h = -1 * (c / ans[0]);
double topper = -1 * w + sqrt(w*w - 4 * q*h);
topper /= 2 * q;
ans.push_back((long long)(topper));
topper = -1 * w - sqrt(w*w - 4 * q*h);
topper /= 2 * q;
ans.push_back((long long)(topper));
sort(ans.begin(), ans.end());
cout << ans[0] << " " << ans[1] << " " << ans[2] << endl;
return 0;
}
kotamanegi