mirror of
https://github.com/QingdaoU/Judger.git
synced 2025-01-16 17:25:24 +00:00
12 lines
150 B
C
12 lines
150 B
C
/*
|
|
* 测试实际运行时间超限
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
sleep(1000);
|
|
return 0;
|
|
}
|