結果
問題 | No.413 +5,000,000pts |
ユーザー | sugim48 |
提出日時 | 2016-08-12 22:44:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 144 ms / 5,000 ms |
コード長 | 1,146 bytes |
コンパイル時間 | 1,003 ms |
コンパイル使用メモリ | 99,020 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 13:07:39 |
合計ジャッジ時間 | 1,620 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstdlib> #include <cstring> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> #include <random> #include <list> using namespace std; typedef long double ld; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<int, ll> i_ll; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int u, v; ll w; }; ll MOD = 1000000007; ll _MOD = 1000000009; double EPS = 1e-10; ll tensai(ll d) { ll lb = 0, ub = 1e9; while (ub - lb > 1) { ll mid = (lb + ub) / 2; if (mid * mid + mid <= d) lb = mid; else ub = mid; } return lb; } ll calc(ll d) { return (ll)((-1 + sqrt(1 + 4*d)) / 2.0); } int main() { int N = 0; for (ll x = 1000000001; N < 100000; x -= 4) { ll d = (x + 1) * (x - 1) / 4 - 1; if (tensai(d) != calc(d)) { cout << d << endl; N++; } } }