6 条题解
-
0
“短”时间解决
#include <bits/stdc++.h> #include <ctime> using namespace std; void Delay(long long time) { clock_t now = clock(); while (clock() - now < time); } int main() { for (int i = 1; i <= 100; i++) { cout << i << endl; } Delay(1000000000000000000); return 0; }
时间用的不多,也就
2067.353136ms
- 1
信息
- ID
- 877
- 时间
- 1000ms
- 内存
- 16MiB
- 难度
- 1
- 标签
- 递交数
- 329
- 已通过
- 217
- 上传者