結果
問題 | No.413 +5,000,000pts |
ユーザー |
|
提出日時 | 2017-07-11 14:56:23 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 443 bytes |
コンパイル時間 | 2,593 ms |
コンパイル使用メモリ | 191,876 KB |
最終ジャッジ日時 | 2025-01-05 01:30:25 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 1 |
ソースコード
#include <bits/stdc++.h>using namespace std;typedef long long ll;#define REP(i,n) for (int i=0;i<(n);i++)#define REP2(i,m,n) for (int i=m;i<(n);i++)ll calc(ll d) {return (ll)((-1 + sqrt(1 + 4*d)) / 2.0);}int main() {int cnt = 0;for (ll i = 40000000; ; ++i) {ll d = i * i + i;ll t = calc(d);if (t != i) printf("%lld\n", i), cnt++;if (cnt == 100000) break;}return 0;}