結果

問題 No.413 +5,000,000pts
ユーザー sugim48sugim48
提出日時 2016-08-12 22:44:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 151 ms / 5,000 ms
コード長 1,146 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 98,092 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-07 09:22:29
合計ジャッジ時間 1,393 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 151 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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++;
		}
	}
}
0