結果

問題 No.413 +5,000,000pts
ユーザー face4face4
提出日時 2019-11-23 19:05:19
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 211 bytes
コンパイル時間 712 ms
コンパイル使用メモリ 67,956 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-04-19 14:43:58
合計ジャッジ時間 1,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

// ???
#include<iostream>
#include<cmath>
using namespace std;
typedef long long ll;

int main(){
    for(int i = 0; i < 100000; i++){
        ll x = 5e8+i;
        cout << x*x+x-1 << endl;
    }
    return 0;
}
0