結果
問題 | No.550 夏休みの思い出(1) |
ユーザー |
![]() |
提出日時 | 2017-07-29 02:29:57 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 810 bytes |
コンパイル時間 | 886 ms |
コンパイル使用メモリ | 92,732 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-11 05:39:11 |
合計ジャッジ時間 | 2,394 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 55 |
ソースコード
#include <algorithm> #include <cstdio> #include <iostream> #include <map> #include <cmath> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <vector> #include <stdlib.h> #include <stdio.h> #include <bitset> using namespace std; #define FOR(I,A,B) for(ll I = (A); I < (B); ++I) typedef long long ll; ll A,B,C; ll f(ll x) { return x * x * x + A * x * x + B * x + C; } int main() { cin >> A >> B >> C; ll ans[3]; FOR(i,0,1000006) { if(f(i) == 0) {ans[0] = i; break; } if(f(-i) == 0) {ans[0] = -i; break; } } ll p = A + ans[0]; ll q = ans[0] != 0 ? - C / ans[0] : B; ans[1] = (- p + sqrt(p * p - 4 * q)) / 2; ans[2] = (- p - sqrt(p * p - 4 * q)) / 2; sort(ans, ans + 3); printf("%lld %lld %lld\n", ans[0], ans[1], ans[2]); return 0; }