結果

問題 No.1409 Simple Math in yukicoder
ユーザー publflpublfl
提出日時 2021-02-26 23:00:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 866 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 51,840 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-10-02 15:50:09
合計ジャッジ時間 54,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,760 KB
testcase_01 AC 4 ms
5,632 KB
testcase_02 AC 3 ms
5,888 KB
testcase_03 AC 2 ms
5,760 KB
testcase_04 AC 3 ms
5,760 KB
testcase_05 AC 2 ms
5,760 KB
testcase_06 AC 3 ms
5,504 KB
testcase_07 AC 134 ms
6,528 KB
testcase_08 AC 511 ms
6,528 KB
testcase_09 AC 160 ms
6,528 KB
testcase_10 AC 392 ms
6,528 KB
testcase_11 AC 568 ms
6,528 KB
testcase_12 AC 408 ms
6,400 KB
testcase_13 AC 157 ms
6,528 KB
testcase_14 AC 130 ms
6,400 KB
testcase_15 AC 187 ms
6,400 KB
testcase_16 AC 238 ms
6,528 KB
testcase_17 AC 757 ms
6,528 KB
testcase_18 AC 327 ms
6,528 KB
testcase_19 AC 378 ms
6,528 KB
testcase_20 AC 314 ms
6,528 KB
testcase_21 AC 250 ms
6,528 KB
testcase_22 AC 487 ms
6,400 KB
testcase_23 AC 104 ms
6,528 KB
testcase_24 AC 78 ms
6,656 KB
testcase_25 AC 477 ms
6,656 KB
testcase_26 AC 501 ms
6,528 KB
testcase_27 AC 840 ms
6,656 KB
testcase_28 AC 866 ms
6,784 KB
testcase_29 AC 864 ms
6,784 KB
testcase_30 AC 843 ms
6,784 KB
testcase_31 AC 794 ms
6,784 KB
testcase_32 AC 841 ms
6,784 KB
testcase_33 AC 753 ms
6,656 KB
testcase_34 AC 797 ms
6,528 KB
testcase_35 AC 812 ms
6,656 KB
testcase_36 AC 813 ms
6,784 KB
testcase_37 AC 788 ms
6,656 KB
testcase_38 AC 764 ms
6,656 KB
testcase_39 AC 774 ms
6,528 KB
testcase_40 AC 776 ms
6,400 KB
testcase_41 AC 780 ms
6,528 KB
testcase_42 AC 783 ms
6,400 KB
testcase_43 AC 772 ms
6,528 KB
testcase_44 AC 776 ms
6,656 KB
testcase_45 AC 772 ms
6,528 KB
testcase_46 AC 788 ms
6,400 KB
testcase_47 AC 781 ms
6,656 KB
testcase_48 AC 778 ms
6,656 KB
testcase_49 AC 767 ms
6,528 KB
testcase_50 AC 784 ms
6,528 KB
testcase_51 AC 774 ms
6,400 KB
testcase_52 AC 763 ms
6,528 KB
testcase_53 AC 773 ms
6,528 KB
testcase_54 AC 774 ms
6,656 KB
testcase_55 AC 786 ms
6,656 KB
testcase_56 AC 781 ms
6,528 KB
testcase_57 AC 66 ms
6,528 KB
testcase_58 AC 65 ms
6,528 KB
testcase_59 AC 69 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <vector>

long long int power(long long int a, long long int b, int p)
{
	long long int ans = 1;
	long long int k = a;
	while(b)
	{
		if(b%2==1) ans*=k, ans%=p;
		k*=k, k%=p;
		b/=2;
	}
	return ans;
}
long long int inv(long long int a, int p)
{
	return power(a,p-2,p);
}

long long int fact[110];
std::vector<int> ans;
long long int check[100010];
std::vector<int> save[1010][110];

int main()
{
	fact[0] = 1;
	int T;
	scanf("%d",&T);
	while(T--)
	{
		ans.clear();
		int a,b;
		scanf("%d%d",&a,&b);
		if(!save[a][b].empty())
		{
			for(int i=0;i<save[a][b].size();i++) printf("%d ",save[a][b][i]);
			printf("\n");
			continue;
		}
		int p = a*b+1;
		
		int count = 0;
		for(int i=1;i<=a*b;i++) check[i] = 0;
		for(int i=1;i<=a*b;i++)
		{
			if(check[i]==0)
			{
				long long int t = power(i,b,p);
				long long int i2 = i;
				long long int s = t;
				
				while(check[i2]==0)
				{
					check[i2] = s;
					if(s==1) count++;
					if(count>=b) goto u;
					i2 = (i2*i)%p;
					s = (s*t)%p;
				}
			}
		}
		u:;
		for(int i=1;i<=a*b;i++) if(check[i]==1) ans.push_back(i);
		save[a][b] = ans;
		for(int i=0;i<ans.size();i++) printf("%d ",ans[i]);
		printf("\n");
	}
}
0