Judger/tests/13/Main.c

19 lines
384 B
C
Raw Normal View History

2016-03-02 19:36:26 +08:00
/*
* 2300M
*/
2016-01-24 10:22:30 +08:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main()
{
// 300m
int big_size = 300 * 1024 * 1024;
int *b = NULL;
b = (int *)malloc(big_size);
memset(b, 0, big_size);
return 0;
}