mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-01 18:01:41 +00:00
12 lines
138 B
C
12 lines
138 B
C
/*
|
|
* 测试cpu时间超限
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
while(1);
|
|
return 0;
|
|
}
|