Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
41139 | Andrew宥杨 | 练60.5 素数筛选 | C++ | No Test Data | 0 MS | 0 KB | 204 | 2024-02-19 16:35:59 |
#include<bits/stdc++.h> using namespace std; int main(){ cout<<"2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97"<<endl; cout<<"100以内的素数个数: 25"; return 0; }