結果

問題 No.9000 Hello World! (テスト用)
ユーザー tubo28tubo28
提出日時 2015-02-03 23:34:20
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 26,044 KB
実行使用メモリ 164,596 KB
最終ジャッジ日時 2023-08-26 06:09:33
合計ジャッジ時間 954 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
163,864 KB
testcase_01 AC 55 ms
164,596 KB
testcase_02 AC 52 ms
163,468 KB
testcase_03 AC 51 ms
162,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>

int main(){
    long long l = 512LL*1024*1024;
    char * c = new char[l];
    int n = 100000;
    while(n--){
        c[l%rand()] = rand();
    }
    puts("Hello World!");
    return 0;
}
0