| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12179 | 陈颖钧 | 判断素数 | C++ | Wrong Answer | 25 | 1 MS | 260 KB | 216 | 2025-07-08 10:39:23 |
#include<bits/stdc++.h> using namespace std; int a; char p(int a){ if(a%2!=0&&a%3!=0&&a%5!=0&&a%7!=0||a==2||a==3||a==7||a==5&&a!=1) return 'T'; else return 'F'; } int main(){ cin>>a; cout<<p(a); }