結果

問題 No.413 +5,000,000pts
ユーザー imulan
提出日時 2016-08-13 04:44:38
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 428 bytes
コンパイル時間 1,604 ms
コンパイル使用メモリ 165,368 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 16:19:42
合計ジャッジ時間 2,202 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

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