結果

問題 No.1409 Simple Math in yukicoder
ユーザー ygussanyygussany
提出日時 2021-02-26 22:11:51
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 492 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-10-02 15:03:44
合計ジャッジ時間 57,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 0 ms
6,820 KB
testcase_04 AC 0 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 505 ms
6,816 KB
testcase_08 AC 1,769 ms
6,816 KB
testcase_09 AC 452 ms
6,816 KB
testcase_10 AC 1,389 ms
6,816 KB
testcase_11 AC 1,747 ms
6,816 KB
testcase_12 AC 1,354 ms
6,820 KB
testcase_13 AC 519 ms
6,820 KB
testcase_14 AC 389 ms
6,820 KB
testcase_15 AC 612 ms
6,820 KB
testcase_16 AC 653 ms
6,820 KB
testcase_17 TLE -
testcase_18 AC 1,163 ms
6,816 KB
testcase_19 AC 1,225 ms
6,816 KB
testcase_20 AC 1,009 ms
6,824 KB
testcase_21 AC 794 ms
6,820 KB
testcase_22 AC 1,510 ms
6,820 KB
testcase_23 AC 307 ms
6,824 KB
testcase_24 AC 250 ms
6,820 KB
testcase_25 AC 1,446 ms
6,820 KB
testcase_26 AC 1,581 ms
6,816 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
権限があれば一括ダウンロードができます

ソースコード

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, t, T, v, x;
	scanf("%d", &T);
	for (t = 1; t <= T; t++) {
		scanf("%d %d", &v, &x);
		Mod = v * x + 1;
		
		for (i = 1, j = 0; i < Mod; i++) {
			if (pow_mod(i, x) == 1) {
				if (j > 0) printf(" ");
				printf("%d", i);
				j++;
			}
		}
		printf("\n");
	}
	fflush(stdout);
	return 0;
}
0