結果

問題 No.413 +5,000,000pts
ユーザー 👑 obakyan
提出日時 2019-05-02 22:14:46
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 314 bytes
コンパイル時間 792 ms
コンパイル使用メモリ 71,708 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-31 13:43:09
合計ジャッジ時間 1,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cstddef>
#include <vector>
#include <algorithm>
#include <cmath>
#include <string>
#include <iostream>
#include <iomanip>
#define L64 long long

int main(void)
{
  for (L64 i = 999999999; 999900000 <= i; i--){
    std::cout << i * (i + 1LL) - 1LL << std::endl;
  }
}
0