結果

問題 No.1409 Simple Math in yukicoder
ユーザー convexineqconvexineq
提出日時 2021-02-27 07:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-10-02 17:01:35
合計ジャッジ時間 32,839 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,736 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,864 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 65 ms
66,688 KB
testcase_08 AC 113 ms
76,544 KB
testcase_09 AC 64 ms
66,944 KB
testcase_10 AC 101 ms
76,800 KB
testcase_11 AC 115 ms
77,024 KB
testcase_12 AC 102 ms
76,900 KB
testcase_13 AC 66 ms
67,328 KB
testcase_14 AC 61 ms
65,536 KB
testcase_15 AC 72 ms
69,504 KB
testcase_16 AC 69 ms
68,480 KB
testcase_17 AC 134 ms
76,672 KB
testcase_18 AC 93 ms
76,416 KB
testcase_19 AC 102 ms
76,800 KB
testcase_20 AC 84 ms
74,084 KB
testcase_21 AC 77 ms
71,552 KB
testcase_22 AC 103 ms
77,124 KB
testcase_23 AC 58 ms
64,640 KB
testcase_24 AC 55 ms
63,232 KB
testcase_25 AC 102 ms
77,056 KB
testcase_26 AC 107 ms
76,692 KB
testcase_27 AC 138 ms
77,056 KB
testcase_28 AC 137 ms
77,056 KB
testcase_29 AC 142 ms
76,800 KB
testcase_30 AC 138 ms
77,312 KB
testcase_31 AC 141 ms
76,928 KB
testcase_32 AC 140 ms
77,440 KB
testcase_33 AC 139 ms
77,008 KB
testcase_34 AC 140 ms
76,672 KB
testcase_35 AC 147 ms
77,184 KB
testcase_36 AC 138 ms
77,184 KB
testcase_37 AC 169 ms
76,928 KB
testcase_38 AC 170 ms
77,056 KB
testcase_39 AC 171 ms
76,928 KB
testcase_40 AC 172 ms
77,184 KB
testcase_41 AC 172 ms
77,056 KB
testcase_42 AC 169 ms
76,928 KB
testcase_43 AC 173 ms
77,312 KB
testcase_44 AC 176 ms
76,712 KB
testcase_45 AC 171 ms
76,680 KB
testcase_46 AC 178 ms
77,184 KB
testcase_47 AC 178 ms
76,928 KB
testcase_48 AC 175 ms
77,284 KB
testcase_49 AC 169 ms
77,304 KB
testcase_50 AC 170 ms
77,184 KB
testcase_51 AC 172 ms
77,184 KB
testcase_52 AC 170 ms
77,004 KB
testcase_53 AC 169 ms
77,048 KB
testcase_54 AC 167 ms
76,948 KB
testcase_55 AC 174 ms
76,952 KB
testcase_56 AC 173 ms
76,972 KB
testcase_57 AC 173 ms
76,928 KB
testcase_58 AC 175 ms
77,056 KB
testcase_59 AC 170 ms
77,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_factors(N): #素因数のリスト
    factors = []
    if N&1==0:
        factors = [2]
        while N%2 == 0: N //= 2
    else: factorization = []
    M = int(N**0.5)+1
    for i in range(3,M,2):
        if N%i==0:
            while N%i == 0: N //= i
            factors.append(i)
    if N!= 1: factors.append(N)
    assert N != 0, "zero"
    return factors

def solve(v,x):
    p = v*x+1
    ps = prime_factors(v)+prime_factors(x)
    r = 1
    for r in range(2,p):
        for pp in ps:
            if pow(r,v*x//pp,p) == 1:
                break
        else:
            break
    a = [pow(r,i*v,p) for i in range(x)]
    return sorted(a)

T = int(input())
for _ in range(T):
    v,x = map(int,input().split())
    print(*solve(v,x))
0