mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-04 11:21:42 +00:00
12 lines
143 B
C
12 lines
143 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
int arr[102400000];
|
|
|
|
|
|
int main()
|
|
{
|
|
memset(arr, 1, sizeof(arr));
|
|
return 0;
|
|
} |