結果

問題 No.1409 Simple Math in yukicoder
ユーザー ygussanyygussany
提出日時 2021-02-26 22:44:34
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 849 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 30,720 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 15:30:15
合計ジャッジ時間 36,785 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 27 ms
5,248 KB
testcase_08 AC 90 ms
5,248 KB
testcase_09 AC 20 ms
5,248 KB
testcase_10 AC 72 ms
5,248 KB
testcase_11 AC 90 ms
5,248 KB
testcase_12 AC 73 ms
5,248 KB
testcase_13 AC 28 ms
5,248 KB
testcase_14 AC 25 ms
5,248 KB
testcase_15 AC 33 ms
5,248 KB
testcase_16 AC 31 ms
5,248 KB
testcase_17 AC 117 ms
5,248 KB
testcase_18 AC 55 ms
5,248 KB
testcase_19 AC 67 ms
5,248 KB
testcase_20 AC 48 ms
5,248 KB
testcase_21 AC 44 ms
5,248 KB
testcase_22 AC 73 ms
5,248 KB
testcase_23 AC 15 ms
5,248 KB
testcase_24 AC 16 ms
5,248 KB
testcase_25 AC 66 ms
5,248 KB
testcase_26 AC 77 ms
5,248 KB
testcase_27 AC 135 ms
5,248 KB
testcase_28 AC 130 ms
5,248 KB
testcase_29 AC 138 ms
5,248 KB
testcase_30 AC 132 ms
5,248 KB
testcase_31 AC 129 ms
5,248 KB
testcase_32 AC 129 ms
5,248 KB
testcase_33 AC 128 ms
5,248 KB
testcase_34 AC 123 ms
5,248 KB
testcase_35 AC 125 ms
5,248 KB
testcase_36 AC 136 ms
5,248 KB
testcase_37 AC 366 ms
5,248 KB
testcase_38 AC 370 ms
5,248 KB
testcase_39 AC 371 ms
5,248 KB
testcase_40 AC 386 ms
5,248 KB
testcase_41 AC 374 ms
5,248 KB
testcase_42 AC 375 ms
5,248 KB
testcase_43 AC 366 ms
5,248 KB
testcase_44 AC 376 ms
5,248 KB
testcase_45 AC 380 ms
5,248 KB
testcase_46 AC 393 ms
5,248 KB
testcase_47 AC 369 ms
5,248 KB
testcase_48 AC 381 ms
5,248 KB
testcase_49 AC 382 ms
5,248 KB
testcase_50 AC 385 ms
5,248 KB
testcase_51 AC 372 ms
5,248 KB
testcase_52 AC 380 ms
5,248 KB
testcase_53 AC 377 ms
5,248 KB
testcase_54 AC 373 ms
5,248 KB
testcase_55 AC 395 ms
5,248 KB
testcase_56 AC 388 ms
5,248 KB
testcase_57 AC 403 ms
5,248 KB
testcase_58 AC 410 ms
5,248 KB
testcase_59 AC 428 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int Mod;

long long pow_mod(int n, int k)
{
	long long N, ans = 1;
	for (N = n; k > 0; k >>= 1, N = N * N % Mod) if (k & 1) ans = ans * N % Mod;
	return ans;
}

int main()
{
	int i, j, k, l, m, t, T, v, x, flag[100001];
	scanf("%d", &T);
	for (t = 1; t <= T; t++) {
		scanf("%d %d", &v, &x);
		Mod = v * x + 1;
		for (i = 1; i < Mod; i++) flag[i] = 0;
		
		for (i = 1, k = 0; i < Mod && k < x; i++) {
			if (flag[i] != 0) continue;
			if (pow_mod(i, x) == 1) flag[i] = 1;
			else flag[i] = -1;
			if (flag[i] == 1) {
				for (j = i * i % Mod, k++; j != i; j = j * i % Mod) {
					if (flag[j] == 0) {
						flag[j] = 1;
						k++;
					}
				}
			}
		}
		for (i = 1, j = 0; i < Mod && j < x; i++) {
			if (flag[i] == 1) {
				if (j++ > 0) printf(" ");
				printf("%d", i);
			}
		}
		printf("\n");
	}
	fflush(stdout);
	return 0;
}
0