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