結果
問題 | No.1409 Simple Math in yukicoder |
ユーザー | mkawa2 |
提出日時 | 2022-11-01 00:48:41 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,230 bytes |
コンパイル時間 | 267 ms |
コンパイル使用メモリ | 81,856 KB |
実行使用メモリ | 261,076 KB |
最終ジャッジ日時 | 2024-07-08 11:59:43 |
合計ジャッジ時間 | 32,221 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
62,820 KB |
testcase_01 | AC | 40 ms
54,952 KB |
testcase_02 | AC | 40 ms
54,916 KB |
testcase_03 | AC | 37 ms
54,848 KB |
testcase_04 | AC | 40 ms
54,232 KB |
testcase_05 | AC | 39 ms
53,876 KB |
testcase_06 | AC | 38 ms
55,936 KB |
testcase_07 | AC | 262 ms
129,100 KB |
testcase_08 | AC | 690 ms
195,160 KB |
testcase_09 | AC | 237 ms
129,284 KB |
testcase_10 | AC | 588 ms
196,236 KB |
testcase_11 | AC | 680 ms
186,452 KB |
testcase_12 | AC | 541 ms
185,536 KB |
testcase_13 | AC | 262 ms
130,136 KB |
testcase_14 | AC | 215 ms
124,984 KB |
testcase_15 | AC | 325 ms
153,428 KB |
testcase_16 | AC | 303 ms
147,496 KB |
testcase_17 | AC | 954 ms
190,004 KB |
testcase_18 | AC | 509 ms
182,684 KB |
testcase_19 | AC | 534 ms
178,460 KB |
testcase_20 | AC | 476 ms
178,388 KB |
testcase_21 | AC | 389 ms
167,996 KB |
testcase_22 | AC | 635 ms
188,392 KB |
testcase_23 | AC | 184 ms
130,572 KB |
testcase_24 | AC | 150 ms
108,916 KB |
testcase_25 | AC | 618 ms
196,264 KB |
testcase_26 | AC | 644 ms
165,624 KB |
testcase_27 | AC | 1,011 ms
222,092 KB |
testcase_28 | AC | 926 ms
196,152 KB |
testcase_29 | AC | 934 ms
189,992 KB |
testcase_30 | AC | 955 ms
206,748 KB |
testcase_31 | AC | 931 ms
194,364 KB |
testcase_32 | AC | 912 ms
195,784 KB |
testcase_33 | AC | 935 ms
200,972 KB |
testcase_34 | AC | 1,014 ms
213,400 KB |
testcase_35 | AC | 1,018 ms
205,608 KB |
testcase_36 | AC | 999 ms
212,996 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 | -- | - |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 # md = 10**9+7 md = 998244353 from random import randrange def isroot(p, r): seen = [0]*p a = 1 for _ in range(p-1): if seen[a]: return False seen[a] = 1 a = a*r%p return True def solve(): v, x = LI() if x==1: print(1) return p = v*x+1 r = 2 while not isroot(p, r): r = randrange(3, p) a = pow(r, v, p) ans = [a] for _ in range(x-1): ans.append(ans[-1]*a%p) ans.sort() print(*ans) for _ in range(II()): solve()