結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | GER_chen |
提出日時 | 2021-02-26 22:16:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 599 bytes |
コンパイル時間 | 320 ms |
コンパイル使用メモリ | 82,288 KB |
実行使用メモリ | 265,132 KB |
最終ジャッジ日時 | 2024-10-02 15:05:51 |
合計ジャッジ時間 | 31,397 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
57,472 KB |
testcase_01 | AC | 37 ms
51,968 KB |
testcase_02 | AC | 37 ms
51,968 KB |
testcase_03 | AC | 38 ms
52,224 KB |
testcase_04 | AC | 38 ms
52,480 KB |
testcase_05 | AC | 38 ms
52,224 KB |
testcase_06 | AC | 38 ms
52,096 KB |
testcase_07 | AC | 249 ms
102,656 KB |
testcase_08 | AC | 726 ms
147,748 KB |
testcase_09 | AC | 222 ms
98,048 KB |
testcase_10 | AC | 578 ms
125,284 KB |
testcase_11 | AC | 716 ms
136,312 KB |
testcase_12 | AC | 557 ms
124,508 KB |
testcase_13 | AC | 245 ms
103,040 KB |
testcase_14 | AC | 210 ms
93,824 KB |
testcase_15 | AC | 297 ms
112,000 KB |
testcase_16 | AC | 316 ms
115,584 KB |
testcase_17 | AC | 916 ms
147,240 KB |
testcase_18 | AC | 484 ms
111,616 KB |
testcase_19 | AC | 528 ms
121,804 KB |
testcase_20 | AC | 429 ms
112,896 KB |
testcase_21 | AC | 365 ms
114,688 KB |
testcase_22 | AC | 626 ms
128,412 KB |
testcase_23 | AC | 171 ms
86,784 KB |
testcase_24 | AC | 141 ms
81,280 KB |
testcase_25 | AC | 592 ms
120,596 KB |
testcase_26 | AC | 650 ms
135,300 KB |
testcase_27 | AC | 1,033 ms
156,204 KB |
testcase_28 | AC | 991 ms
145,524 KB |
testcase_29 | AC | 1,000 ms
147,400 KB |
testcase_30 | AC | 1,026 ms
151,704 KB |
testcase_31 | AC | 1,060 ms
148,956 KB |
testcase_32 | AC | 955 ms
145,536 KB |
testcase_33 | AC | 1,014 ms
159,076 KB |
testcase_34 | AC | 999 ms
152,832 KB |
testcase_35 | AC | 1,016 ms
147,060 KB |
testcase_36 | AC | 1,021 ms
157,640 KB |
testcase_37 | TLE | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
ソースコード
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)]))