結果

問題 No.1409 Simple Math in yukicoder
ユーザー GER_chenGER_chen
提出日時 2021-02-27 14:58:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,036 KB
最終ジャッジ日時 2024-10-02 17:29:48
合計ジャッジ時間 31,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,208 KB
testcase_01 AC 37 ms
52,772 KB
testcase_02 AC 38 ms
52,804 KB
testcase_03 AC 38 ms
53,076 KB
testcase_04 AC 39 ms
52,208 KB
testcase_05 AC 38 ms
53,236 KB
testcase_06 AC 37 ms
52,884 KB
testcase_07 AC 59 ms
66,632 KB
testcase_08 AC 109 ms
76,248 KB
testcase_09 AC 60 ms
65,968 KB
testcase_10 AC 103 ms
76,532 KB
testcase_11 AC 117 ms
76,408 KB
testcase_12 AC 100 ms
76,384 KB
testcase_13 AC 61 ms
66,512 KB
testcase_14 AC 57 ms
65,160 KB
testcase_15 AC 65 ms
68,316 KB
testcase_16 AC 67 ms
69,456 KB
testcase_17 AC 122 ms
76,396 KB
testcase_18 AC 88 ms
76,812 KB
testcase_19 AC 101 ms
76,476 KB
testcase_20 AC 87 ms
76,104 KB
testcase_21 AC 81 ms
74,324 KB
testcase_22 AC 100 ms
76,164 KB
testcase_23 AC 55 ms
65,068 KB
testcase_24 AC 53 ms
64,620 KB
testcase_25 AC 105 ms
76,288 KB
testcase_26 AC 105 ms
76,172 KB
testcase_27 AC 134 ms
76,764 KB
testcase_28 AC 131 ms
76,516 KB
testcase_29 AC 133 ms
76,508 KB
testcase_30 AC 134 ms
76,616 KB
testcase_31 AC 139 ms
76,588 KB
testcase_32 AC 134 ms
76,544 KB
testcase_33 AC 128 ms
76,476 KB
testcase_34 AC 130 ms
76,308 KB
testcase_35 AC 137 ms
76,428 KB
testcase_36 AC 132 ms
76,384 KB
testcase_37 AC 153 ms
76,528 KB
testcase_38 AC 151 ms
76,624 KB
testcase_39 AC 147 ms
77,036 KB
testcase_40 AC 157 ms
76,812 KB
testcase_41 AC 152 ms
76,468 KB
testcase_42 AC 148 ms
76,636 KB
testcase_43 AC 147 ms
76,672 KB
testcase_44 AC 150 ms
76,440 KB
testcase_45 AC 156 ms
76,712 KB
testcase_46 AC 153 ms
76,568 KB
testcase_47 AC 149 ms
76,236 KB
testcase_48 AC 152 ms
76,844 KB
testcase_49 AC 150 ms
76,380 KB
testcase_50 AC 148 ms
76,796 KB
testcase_51 AC 153 ms
76,984 KB
testcase_52 AC 156 ms
76,716 KB
testcase_53 AC 148 ms
76,432 KB
testcase_54 AC 157 ms
76,680 KB
testcase_55 AC 151 ms
76,840 KB
testcase_56 AC 147 ms
76,724 KB
testcase_57 AC 155 ms
76,764 KB
testcase_58 AC 150 ms
76,840 KB
testcase_59 AC 159 ms
76,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primitive_root(m):
    if m == 2: return 1
    if m == 167772161: return 3
    if m == 469762049: return 3
    if m == 754974721: return 11
    if m == 998244353: return 3

    Divs = [2]
    x = (m-1)//2
    while x%2 == 0:
        x //= 2
    i = 3
    while i*i <= x:
        if not x%i:
            Divs.append(i)
            while not x%i:
                x //= i
        i += 2
    if x > 1:
        Divs.append(x)

    g = 2
    while True:
        if all(pow(g, (m-1)//div, m) != 1 for div in Divs):
            return g
        g += 1
                
for _ in range(int(input())):
    v, x = map(int, input().split())
    q = v*x+1
    g = primitive_root(q)
    h = pow(g, v, q)
    print(*sorted([pow(h, i, q) for i in range(x)]))
0