結果
問題 | No.413 +5,000,000pts |
ユーザー | yuppe19 😺 |
提出日時 | 2016-06-05 08:44:55 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 479 ms |
コンパイル使用メモリ | 55,408 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-12 02:21:59 |
合計ジャッジ時間 | 1,152 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ソースコード
#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; }