結果

問題 No.1409 Simple Math in yukicoder
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-02-27 11:23:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 503 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-10-02 17:23:10
合計ジャッジ時間 40,436 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 103 ms
71,552 KB
testcase_08 AC 187 ms
76,928 KB
testcase_09 AC 88 ms
67,840 KB
testcase_10 AC 169 ms
76,800 KB
testcase_11 AC 186 ms
77,184 KB
testcase_12 AC 162 ms
76,800 KB
testcase_13 AC 95 ms
67,968 KB
testcase_14 AC 95 ms
66,560 KB
testcase_15 AC 108 ms
70,656 KB
testcase_16 AC 104 ms
69,760 KB
testcase_17 AC 217 ms
76,544 KB
testcase_18 AC 140 ms
76,416 KB
testcase_19 AC 158 ms
76,416 KB
testcase_20 AC 137 ms
76,416 KB
testcase_21 AC 141 ms
76,672 KB
testcase_22 AC 169 ms
76,416 KB
testcase_23 AC 79 ms
67,840 KB
testcase_24 AC 86 ms
69,504 KB
testcase_25 AC 158 ms
76,928 KB
testcase_26 AC 164 ms
76,800 KB
testcase_27 AC 229 ms
76,416 KB
testcase_28 AC 228 ms
76,800 KB
testcase_29 AC 242 ms
76,800 KB
testcase_30 AC 229 ms
76,800 KB
testcase_31 AC 228 ms
77,056 KB
testcase_32 AC 226 ms
76,288 KB
testcase_33 AC 228 ms
77,184 KB
testcase_34 AC 216 ms
76,160 KB
testcase_35 AC 224 ms
76,800 KB
testcase_36 AC 237 ms
76,800 KB
testcase_37 AC 439 ms
76,672 KB
testcase_38 AC 454 ms
76,416 KB
testcase_39 AC 448 ms
76,800 KB
testcase_40 AC 480 ms
76,544 KB
testcase_41 AC 456 ms
76,672 KB
testcase_42 AC 445 ms
76,160 KB
testcase_43 AC 441 ms
76,288 KB
testcase_44 AC 459 ms
76,672 KB
testcase_45 AC 457 ms
76,800 KB
testcase_46 AC 478 ms
76,800 KB
testcase_47 AC 445 ms
76,416 KB
testcase_48 AC 456 ms
76,544 KB
testcase_49 AC 462 ms
76,800 KB
testcase_50 AC 481 ms
76,800 KB
testcase_51 AC 454 ms
76,672 KB
testcase_52 AC 463 ms
76,288 KB
testcase_53 AC 465 ms
77,056 KB
testcase_54 AC 456 ms
76,416 KB
testcase_55 AC 478 ms
76,416 KB
testcase_56 AC 471 ms
76,544 KB
testcase_57 AC 481 ms
76,928 KB
testcase_58 AC 474 ms
76,416 KB
testcase_59 AC 503 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())

for _ in range(t):
    v,x = map(int,input().split())
    mod = v*x+1
    for i in range(1,mod):
        if pow(i,x,mod) != 1:
            continue
        s = set()
        now = i
        for j in range(x):
            s.add(now)
            now *= i
            now %= mod
        if len(s) == x:
            ans = sorted(list(s))
            print(*ans)
            break
0