結果

問題 No.413 +5,000,000pts
ユーザー yuppe19 😺yuppe19 😺
提出日時 2016-06-05 08:44:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 198 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 55,696 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2024-04-20 07:13:47
合計ジャッジ時間 981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
using namespace std;
using i64 = long long;

int main(void) {
  const int N = 10000;
  for(i64 i=0; i<N; ++i) {
    printf("%lld\n", i+1);
  }
  return 0;
}
0