結果

問題 No.1409 Simple Math in yukicoder
ユーザー ygd.ygd.
提出日時 2021-02-26 22:53:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,240 KB
最終ジャッジ日時 2024-10-02 15:37:23
合計ジャッジ時間 41,256 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 42 ms
51,968 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 94 ms
73,600 KB
testcase_08 AC 185 ms
76,544 KB
testcase_09 AC 87 ms
70,272 KB
testcase_10 AC 155 ms
76,416 KB
testcase_11 AC 167 ms
75,904 KB
testcase_12 AC 148 ms
76,416 KB
testcase_13 AC 97 ms
74,752 KB
testcase_14 AC 96 ms
73,600 KB
testcase_15 AC 104 ms
76,032 KB
testcase_16 AC 98 ms
72,704 KB
testcase_17 AC 209 ms
76,580 KB
testcase_18 AC 132 ms
76,672 KB
testcase_19 AC 146 ms
76,544 KB
testcase_20 AC 130 ms
76,416 KB
testcase_21 AC 119 ms
75,904 KB
testcase_22 AC 162 ms
76,544 KB
testcase_23 AC 87 ms
72,832 KB
testcase_24 AC 71 ms
66,944 KB
testcase_25 AC 145 ms
76,772 KB
testcase_26 AC 160 ms
76,032 KB
testcase_27 AC 233 ms
76,672 KB
testcase_28 AC 222 ms
76,544 KB
testcase_29 AC 239 ms
76,544 KB
testcase_30 AC 225 ms
76,032 KB
testcase_31 AC 227 ms
76,628 KB
testcase_32 AC 226 ms
76,672 KB
testcase_33 AC 226 ms
76,416 KB
testcase_34 AC 236 ms
76,776 KB
testcase_35 AC 223 ms
76,288 KB
testcase_36 AC 228 ms
76,548 KB
testcase_37 AC 456 ms
76,544 KB
testcase_38 AC 456 ms
76,032 KB
testcase_39 AC 450 ms
76,416 KB
testcase_40 AC 471 ms
76,416 KB
testcase_41 AC 445 ms
76,592 KB
testcase_42 AC 471 ms
76,288 KB
testcase_43 AC 449 ms
76,416 KB
testcase_44 AC 481 ms
76,672 KB
testcase_45 AC 456 ms
76,288 KB
testcase_46 AC 459 ms
77,240 KB
testcase_47 AC 433 ms
76,656 KB
testcase_48 AC 452 ms
76,544 KB
testcase_49 AC 454 ms
76,288 KB
testcase_50 AC 476 ms
76,556 KB
testcase_51 AC 449 ms
76,544 KB
testcase_52 AC 440 ms
76,360 KB
testcase_53 AC 426 ms
76,288 KB
testcase_54 AC 449 ms
76,544 KB
testcase_55 AC 453 ms
76,160 KB
testcase_56 AC 432 ms
76,288 KB
testcase_57 AC 476 ms
76,160 KB
testcase_58 AC 480 ms
76,160 KB
testcase_59 AC 507 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    v,x = map(int,input().split())
    p = v*x + 1
    for i in reversed(range(1,p+1)):
        if pow(i,x,p) != 1:
            continue
        S = set([])
        S.add(i)
        ni = i*i%p
        while ni not in S:
            S.add(ni)
            ni = ni*i%p
        #print(i,S)
        if len(S) == x:
            L = list(S)
            L.sort()
            print(*L)
            break
0