結果

問題 No.9000 Hello World! (テスト用)
ユーザー tubo28tubo28
提出日時 2015-02-03 23:36:39
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 277 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 26,160 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-05 11:37:52
合計ジャッジ時間 1,244 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
}
0