結果
問題 | No.9000 Hello World! (テスト用) |
ユーザー | tubo28 |
提出日時 | 2015-02-03 23:35:25 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 237 bytes |
コンパイル時間 | 231 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-24 21:14:44 |
合計ジャッジ時間 | 1,637 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
ソースコード
#include <cstdio> #include <cstdlib> int main(){ long long l = 512LL*1024*1024; long long * c = new long long[l]; int n = 100000; while(n--){ c[l%rand()] = rand(); } puts("Hello World!"); return 0; }