結果

問題 No.413 +5,000,000pts
ユーザー treeonetreeone
提出日時 2016-08-13 15:04:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 119 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 1,307 ms
コンパイル使用メモリ 156,892 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-04-25 06:09:40
合計ジャッジ時間 1,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main() {
    for(int i = 100000; i >= 0; i--){
        ll k = 900000000 - i;
        ll d = k * k + k - 1;
        cout << d << endl;
    }
}
0