| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 75723 | sh25_zhuwy | 绝对素数 | C++ | 通过 | 0 MS | 236 KB | 256 | 2025-12-09 16:07:08 |
#include<bits/stdc++.h> using namespace std; int main() { cout<<11<<endl; cout<<13<<endl; cout<<17<<endl; cout<<31<<endl; cout<<37<<endl; cout<<71<<endl; cout<<73<<endl; cout<<79<<endl; cout<<97; return 0; }