Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
54367 | zhangweiran | 绝对素数 | C++ | Accepted | 0 MS | 244 KB | 173 | 2024-10-27 15:48:00 |
#include<bits/stdc++.h> using namespace std; int main() { cout<<11<<endl<<13<<endl<<17<<endl<<31<<endl<<37<<endl<<71<<endl<<73<<endl<<79<<endl<<97<<endl; return 0; }