Zball in Tina Town HDU

来源:互联网 发布:cia安装软件 编辑:程序博客网 时间:2024/05/17 03:50

Tina Town is a friendly place. People there care about each other.

Tina has a ball called zball. Zball is magic. It grows larger every day. On the first day, it becomes 1 time as large as its original size. On the second day,it will become 2 times as large as the size on the first day. On the n-th day,it will become nn times as large as the size on the (n-1)-th day. Tina want to know its size on the (n-1)-th day modulo n.
Input
The first line of input contains an integer T, representing the number of cases.

The following TT lines, each line contains an integer nn, according to the description.
T105,2n109
Output
For each test case, output an integer representing the answer.
Sample Input
2
3
10
Sample Output
2
0
除了4,需要特判一下:

#include<cstdio>#include<iostream>#include<algorithm>#include<cstdlib>#include<cstring>#include<cmath>#include<vector>#define INF 0x7fffffff#define N 100200using namespace std;bool prime[N];vector<int> p;void getPrime(){    for(int i=2;i<N;i++)        if(!prime[i])        {            p.push_back(i);            for(int j=i;j<N;j+=i)                prime[j]=true;        }}bool check(int x){    for(int i=0;p[i]*p[i]<=x;i++)        if(x%p[i]==0)            return false;    return true;}int main(){    getPrime();    int t;    scanf("%d",&t);    int n;    while(t--)    {        scanf("%d",&n);        if(n==4)        {            printf("2\n");            continue;        }        if(check(n))            printf("%d\n",n-1);        else            printf("0\n");    }    return 0;   }
原创粉丝点击