| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 77513 | sh25_shenpy | 绝对素数 | C++ | 通过 | 0 MS | 176 KB | 174 | 2025-12-26 14:20:51 |
#include <cstdio> int main() { puts("11"); puts("13"); puts("17"); puts("31"); puts("37"); puts("71"); puts("73"); puts("79"); puts("97"); return 0; }