結果
問題 | No.413 +5,000,000pts |
ユーザー | mamekin |
提出日時 | 2016-10-05 15:26:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 907 bytes |
コンパイル時間 | 907 ms |
コンパイル使用メモリ | 100,512 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 17:19:24 |
合計ジャッジ時間 | 1,559 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ソースコード
#define _USE_MATH_DEFINES #include <cstdio> #include <iostream> #include <sstream> #include <fstream> #include <iomanip> #include <algorithm> #include <cmath> #include <complex> #include <string> #include <vector> #include <list> #include <queue> #include <stack> #include <set> #include <map> #include <bitset> #include <numeric> #include <limits> #include <climits> #include <cfloat> #include <functional> #include <iterator> using namespace std; long long calc(long long d){ return (long long)((-1 + sqrt(1 + 4 * d)) / 2.0); } int main() { int cnt = 0; for(long long a = 1000000000; ; ++a){ long long b = a * a; if((b - 1) % 4 != 0) continue; long long d = (b - 1) / 4; long long t = calc(d); if(t * t + t > t){ cout << d << endl; ++ cnt; if(cnt == 100000) return 0; } } }