| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 126782 | 张航 | 判断质数 | C++ | Wrong Answer | 0 | 0 MS | 236 KB | 145 | 2024-01-24 17:06:27 |
#include<iostream> using namespace std; int main() { int n,i; cin>>n; for(i=2;i<n;i++); if(n%i!=0) cout<<"no"; else cout<<"yes"; }