結果

問題 No.413 +5,000,000pts
ユーザー 夜
提出日時 2020-08-08 09:29:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 89,636 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-07-24 11:32:32
合計ジャッジ時間 1,385 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <cmath>
#include <stdio.h>
#include <queue>
#include <deque>
#include <cstdio>
#include <set>
#include <map>
#include <bitset>
#include <stack>
#include <cctype>
using namespace std;
int main() {
    for (long long i = 0; i < 100000; i++) {
        long long d = 999999999 - i;
        cout << d * d + d - 1 << endl;
    }
    return 0;
}
0