Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
105062 | 徐齐力 | 100至200之间的所有素数 | C++ | Accepted | 0 MS | 264 KB | 531 | 2025-01-12 13:18:01 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ cout<<"101"<<' '<<"103"<<' '<<"107"<<' '<<"109"<<' '<<"113"<<' '<<"127"<<' '<<"131"<<' '<<"137"<<' '<<"139"<<' '<<"149"<<' '<<"151"<<' '<<"157"<<' '<<"163"<<' '<<"167"<<' '<<"173"<<' '<<"179"<<' '<<"181"<<' '<<"191"<<' '<<"193"<<' '<<"197"<<' '<<"199"<<' '; return 0; }