标签:integer res pre answer 除了 ant printf 威尔逊 答案
<题目链接>
#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> using namespace std; int juge(int x) { for(int i=2;i*i<=x;i++) { if(x%i==0)return false; } return true; } int main() { int t;cin>>t; while(t--) { int n; scanf("%d",&n); if(n==4) { printf("2\n"); } else { if(juge(n)) { printf("%d\n",n-1); } else printf("0\n"); } } return 0; }
HDU 5391 Zball in Tina Town【威尔逊定理】
标签:integer res pre answer 除了 ant printf 威尔逊 答案
原文地址:https://www.cnblogs.com/00isok/p/9398494.html