結果

問題 No.1409 Simple Math in yukicoder
ユーザー GER_chenGER_chen
提出日時 2021-02-26 22:18:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 990 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 181,156 KB
最終ジャッジ日時 2024-10-02 15:07:51
合計ジャッジ時間 63,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,784 KB
testcase_01 AC 46 ms
54,784 KB
testcase_02 AC 46 ms
54,656 KB
testcase_03 AC 46 ms
54,528 KB
testcase_04 AC 46 ms
54,912 KB
testcase_05 AC 47 ms
54,896 KB
testcase_06 AC 47 ms
54,912 KB
testcase_07 AC 262 ms
104,588 KB
testcase_08 AC 700 ms
146,956 KB
testcase_09 AC 236 ms
100,992 KB
testcase_10 AC 579 ms
126,728 KB
testcase_11 AC 680 ms
134,176 KB
testcase_12 AC 544 ms
125,096 KB
testcase_13 AC 264 ms
104,344 KB
testcase_14 AC 221 ms
96,768 KB
testcase_15 AC 320 ms
106,396 KB
testcase_16 AC 321 ms
107,188 KB
testcase_17 AC 882 ms
147,116 KB
testcase_18 AC 484 ms
113,404 KB
testcase_19 AC 523 ms
123,104 KB
testcase_20 AC 436 ms
108,544 KB
testcase_21 AC 366 ms
106,872 KB
testcase_22 AC 617 ms
130,600 KB
testcase_23 AC 181 ms
89,216 KB
testcase_24 AC 152 ms
84,352 KB
testcase_25 AC 586 ms
121,704 KB
testcase_26 AC 635 ms
134,496 KB
testcase_27 AC 990 ms
155,080 KB
testcase_28 AC 934 ms
142,572 KB
testcase_29 AC 947 ms
143,696 KB
testcase_30 AC 966 ms
147,140 KB
testcase_31 AC 983 ms
145,640 KB
testcase_32 AC 912 ms
146,408 KB
testcase_33 AC 927 ms
153,916 KB
testcase_34 AC 927 ms
145,776 KB
testcase_35 AC 977 ms
141,512 KB
testcase_36 AC 972 ms
152,548 KB
testcase_37 AC 873 ms
174,592 KB
testcase_38 AC 868 ms
179,840 KB
testcase_39 AC 878 ms
176,480 KB
testcase_40 AC 876 ms
178,976 KB
testcase_41 AC 882 ms
180,772 KB
testcase_42 AC 874 ms
181,156 KB
testcase_43 AC 887 ms
178,668 KB
testcase_44 AC 881 ms
173,648 KB
testcase_45 AC 876 ms
173,244 KB
testcase_46 AC 877 ms
180,992 KB
testcase_47 AC 862 ms
176,140 KB
testcase_48 AC 875 ms
180,936 KB
testcase_49 AC 895 ms
177,308 KB
testcase_50 AC 885 ms
176,256 KB
testcase_51 AC 877 ms
177,812 KB
testcase_52 AC 870 ms
176,184 KB
testcase_53 AC 868 ms
174,448 KB
testcase_54 AC 888 ms
175,488 KB
testcase_55 AC 877 ms
180,444 KB
testcase_56 AC 881 ms
180,904 KB
testcase_57 AC 229 ms
94,796 KB
testcase_58 AC 235 ms
95,040 KB
testcase_59 AC 229 ms
94,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache
@lru_cache(maxsize = None)
def prim(p):
    if p in {2, 3}:
        return p-1
    Cand = [True for _ in range(p)]
    Cand[0], Cand[1] = False, False
    for i in range(2, p):
        if Cand[i]:
            Cand[i] = False
            ct, exp = 1, i
            while exp != 1:
                exp *= i
                exp %= p
                Cand[exp] = False
                ct += 1
            if ct == p-1:
                return i
                
for _ in range(int(input())):
    v, x = map(int, input().split())
    q = v*x+1
    g = prim(q)
    h = pow(g, v, q)
    print(*sorted([pow(h, i, q) for i in range(x)]))
0