比赛 20131026 评测结果 TTTTTTTTTT
题目名称 drei 最终得分 0
用户昵称 胡嘉兴 运行时间 10.000 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2015-09-12 20:46:33
显示代码纯文本
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<cstdlib>
using namespace std;
#define N 105
#define max(a, b)  (((a) > (b)) ? (a) : (b))
int main()
{
	int t, a, b, p, ans = 1, book[N], k = 0, flag = 0;
	freopen("drei.in", "r", stdin);
	freopen("drei.out", "w", stdout);

	scanf("%d", &t);
	
	while(t--)
	{

		scanf("%d %d", &a, &p);
		
		if(a % 2 == 0&&p % 2 == 0)
		{
			flag = 1;
		}
		if(a % 2 == 1&&p % 2 == 1)
		{
			flag = 1;
		}
		if(p == 1)
		{
			flag = 1;
		}
		if(flag)
		{

			printf("-1\n");

			flag = 0;
			continue;
		}
		b = a;
		while(b % p != 1)
		{
			b %= p;
			b *= a;
			ans++;
		}

		printf("%d\n", ans);
		ans = 1;
	}
	fclose(stdin);
	fclose(stdout);
	return 0;
}