結果

問題 No.1409 Simple Math in yukicoder
ユーザー tamatotamato
提出日時 2021-02-26 23:42:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-10-02 16:32:01
合計ジャッジ時間 29,998 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 39 ms
54,016 KB
testcase_03 AC 38 ms
54,272 KB
testcase_04 AC 38 ms
54,144 KB
testcase_05 AC 38 ms
54,144 KB
testcase_06 AC 41 ms
54,400 KB
testcase_07 AC 62 ms
70,400 KB
testcase_08 AC 99 ms
77,312 KB
testcase_09 AC 74 ms
70,272 KB
testcase_10 AC 108 ms
77,184 KB
testcase_11 AC 115 ms
77,184 KB
testcase_12 AC 102 ms
77,184 KB
testcase_13 AC 74 ms
70,400 KB
testcase_14 AC 71 ms
68,864 KB
testcase_15 AC 90 ms
77,056 KB
testcase_16 AC 87 ms
75,264 KB
testcase_17 AC 120 ms
77,184 KB
testcase_18 AC 103 ms
77,696 KB
testcase_19 AC 109 ms
77,184 KB
testcase_20 AC 109 ms
77,184 KB
testcase_21 AC 94 ms
77,568 KB
testcase_22 AC 114 ms
77,184 KB
testcase_23 AC 68 ms
67,712 KB
testcase_24 AC 61 ms
66,816 KB
testcase_25 AC 104 ms
77,312 KB
testcase_26 AC 110 ms
77,056 KB
testcase_27 AC 132 ms
77,440 KB
testcase_28 AC 125 ms
77,184 KB
testcase_29 AC 122 ms
77,184 KB
testcase_30 AC 123 ms
77,312 KB
testcase_31 AC 122 ms
77,184 KB
testcase_32 AC 121 ms
77,056 KB
testcase_33 AC 131 ms
77,440 KB
testcase_34 AC 131 ms
77,184 KB
testcase_35 AC 133 ms
77,312 KB
testcase_36 AC 127 ms
77,184 KB
testcase_37 AC 163 ms
77,952 KB
testcase_38 AC 164 ms
77,568 KB
testcase_39 AC 175 ms
77,824 KB
testcase_40 AC 170 ms
77,440 KB
testcase_41 AC 147 ms
77,364 KB
testcase_42 AC 157 ms
77,696 KB
testcase_43 AC 157 ms
77,824 KB
testcase_44 AC 154 ms
77,568 KB
testcase_45 AC 156 ms
77,568 KB
testcase_46 AC 158 ms
77,440 KB
testcase_47 AC 155 ms
77,696 KB
testcase_48 AC 158 ms
77,952 KB
testcase_49 AC 157 ms
77,696 KB
testcase_50 AC 164 ms
77,824 KB
testcase_51 AC 161 ms
77,696 KB
testcase_52 AC 154 ms
77,568 KB
testcase_53 AC 159 ms
77,952 KB
testcase_54 AC 153 ms
77,312 KB
testcase_55 AC 154 ms
77,568 KB
testcase_56 AC 174 ms
77,568 KB
testcase_57 AC 172 ms
77,440 KB
testcase_58 AC 174 ms
77,696 KB
testcase_59 AC 166 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline
    from random import randint

    def primitive_root(P):
        if P == 2:
            return 1
        div = []
        for d in range(2, P+1):
            if d*d > P-1:
                break
            if (P-1) % d == 0:
                div.append(d)
                div.append((P-1) // d)
        while True:
            k = randint(2, P-1)
            ok = 1
            for d in div:
                if pow(k, d, P) == 1:
                    ok = 0
                    break
            if ok:
                return k

    for _ in range(int(input())):
        v, x = map(int, input().split())
        p = v*x+1
        r = primitive_root(p)
        ans = []
        for i in range(x):
            ans.append(pow(r, i*v, p))
        ans.sort()
        print(*ans)


if __name__ == '__main__':
    main()
0