結果

問題 No.413 +5,000,000pts
ユーザー imulanimulan
提出日時 2016-08-13 04:44:38
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 1,418 ms
コンパイル使用メモリ 163,244 KB
実行使用メモリ 4,376 KB
最終ジャッジ日時 2023-08-07 12:22:43
合計ジャッジ時間 2,046 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

typedef long long ll;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr)
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second

int main()
{
    rep(i,100000)
    {
        ll k=100000000+i;
        ll d=k*k+k-1;
        cout << d << endl;
    }
    return 0;
}
0