結果
問題 |
No.9000 Hello World! (テスト用)
|
ユーザー |
![]() |
提出日時 | 2015-02-03 23:36:39 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 277 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 23,424 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 07:15:38 |
合計ジャッジ時間 | 1,384 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 4 |
ソースコード
#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; }