結果

問題 No.413 +5,000,000pts
ユーザー 夜
提出日時 2020-08-08 09:29:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 762 ms
コンパイル使用メモリ 91,172 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-04-08 13:56:13
合計ジャッジ時間 1,440 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
6,548 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