| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 | 
|---|---|---|---|---|---|---|---|---|
| 135457 | 黄芃硕 | 判断素数II | C++ | Wrong Answer | 1 MS | 268 KB | 196 | 2025-11-03 18:09:54 | 
#include<iostream> #include<cstring> using namespace std; int main() { int n; cin>>n; for(int i=2;i<=n-1;i++) { if(n%i==0) { cout<<"no"; return 0; } } return 0; }
------Input------
302
------Answer-----
62
------Your output-----
no