結果

問題 No.1409 Simple Math in yukicoder
ユーザー GER_chenGER_chen
提出日時 2021-02-27 15:03:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 76,988 KB
最終ジャッジ日時 2024-10-02 17:30:21
合計ジャッジ時間 31,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,424 KB
testcase_01 AC 37 ms
52,860 KB
testcase_02 AC 38 ms
52,692 KB
testcase_03 AC 37 ms
52,592 KB
testcase_04 AC 37 ms
52,400 KB
testcase_05 AC 37 ms
52,188 KB
testcase_06 AC 37 ms
52,712 KB
testcase_07 AC 58 ms
67,704 KB
testcase_08 AC 110 ms
76,484 KB
testcase_09 AC 59 ms
67,008 KB
testcase_10 AC 102 ms
76,204 KB
testcase_11 AC 112 ms
76,112 KB
testcase_12 AC 99 ms
76,044 KB
testcase_13 AC 62 ms
67,444 KB
testcase_14 AC 57 ms
66,016 KB
testcase_15 AC 64 ms
68,348 KB
testcase_16 AC 65 ms
68,808 KB
testcase_17 AC 126 ms
76,616 KB
testcase_18 AC 88 ms
75,952 KB
testcase_19 AC 98 ms
76,256 KB
testcase_20 AC 86 ms
76,188 KB
testcase_21 AC 79 ms
74,636 KB
testcase_22 AC 101 ms
76,080 KB
testcase_23 AC 57 ms
64,876 KB
testcase_24 AC 53 ms
65,180 KB
testcase_25 AC 99 ms
76,432 KB
testcase_26 AC 103 ms
76,596 KB
testcase_27 AC 133 ms
76,836 KB
testcase_28 AC 132 ms
76,460 KB
testcase_29 AC 129 ms
76,416 KB
testcase_30 AC 129 ms
76,244 KB
testcase_31 AC 138 ms
76,420 KB
testcase_32 AC 135 ms
76,716 KB
testcase_33 AC 128 ms
76,140 KB
testcase_34 AC 128 ms
76,748 KB
testcase_35 AC 136 ms
76,240 KB
testcase_36 AC 132 ms
76,468 KB
testcase_37 AC 157 ms
76,988 KB
testcase_38 AC 152 ms
76,300 KB
testcase_39 AC 149 ms
76,824 KB
testcase_40 AC 157 ms
76,788 KB
testcase_41 AC 152 ms
76,276 KB
testcase_42 AC 144 ms
76,176 KB
testcase_43 AC 149 ms
76,388 KB
testcase_44 AC 148 ms
76,116 KB
testcase_45 AC 157 ms
76,512 KB
testcase_46 AC 151 ms
76,628 KB
testcase_47 AC 149 ms
76,504 KB
testcase_48 AC 153 ms
76,668 KB
testcase_49 AC 148 ms
76,724 KB
testcase_50 AC 148 ms
76,608 KB
testcase_51 AC 152 ms
76,712 KB
testcase_52 AC 154 ms
76,300 KB
testcase_53 AC 150 ms
76,472 KB
testcase_54 AC 156 ms
76,616 KB
testcase_55 AC 152 ms
76,780 KB
testcase_56 AC 147 ms
76,236 KB
testcase_57 AC 155 ms
76,580 KB
testcase_58 AC 149 ms
76,408 KB
testcase_59 AC 156 ms
76,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def p(m):
    if m == 2:
        return 1
    D = [2]
    x = (m-1)//2
    while x%2 == 0:
        x //= 2
    i = 3
    while i*i <= x:
        if not x%i:
            D.append(i)
            while not x%i:
                x //= i
        i += 2
    if x > 1:
        D.append(x)
    g = 2
    while True:
        if all(pow(g, (m-1)//d, m) != 1 for d in D):
            return g
        g += 1
                
for _ in range(int(input())):
    v, x = map(int, input().split())
    q = v*x+1
    h = pow(p(q), v, q)
    print(*sorted([pow(h, i, q) for i in range(x)]))
0