結果
問題 | No.413 +5,000,000pts |
ユーザー | face4 |
提出日時 | 2019-11-23 19:05:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 135 ms / 5,000 ms |
コード長 | 211 bytes |
コンパイル時間 | 549 ms |
コンパイル使用メモリ | 67,328 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-11 07:00:24 |
合計ジャッジ時間 | 1,188 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ソースコード
// ??? #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; }