結果
問題 | No.9005 実行時間/使用メモリテスト(テスト用) |
ユーザー | くれちー |
提出日時 | 2018-08-25 01:37:48 |
言語 | C (gcc 12.3.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 337 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 812,928 KB |
最終ジャッジ日時 | 2024-06-23 18:24:44 |
合計ジャッジ時間 | 3,656 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
ソースコード
#include <stdio.h> #include <stdlib.h> #define N 50 #define M 5000000 volatile int *hoge; void stuff() { hoge = (int *)calloc(N, sizeof(int)); for (int i = 2; i < N; ++i) { hoge[i] = hoge[i - 1] + hoge[i - 2]; } } int main() { for (int i = 0; i < M; ++i) { stuff(); } system("sleep 3s"); puts("0"); return 0; }