結果

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

テストケース

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