結果
問題 | No.413 +5,000,000pts |
ユーザー | ミドリムシ |
提出日時 | 2018-03-08 23:06:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 215 bytes |
コンパイル時間 | 627 ms |
コンパイル使用メモリ | 68,544 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 08:17:18 |
合計ジャッジ時間 | 1,482 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ソースコード
#include <iostream> #include <algorithm> #include <vector> using namespace std; int main(){ long number = 1; for(long i = 1; i <= 1e5; i++){ number += i * 8; cout << number << endl; } }