結果

問題 No.1409 Simple Math in yukicoder
ユーザー mkawa2mkawa2
提出日時 2022-10-31 17:59:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,182 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 257,792 KB
最終ジャッジ日時 2024-07-08 06:30:04
合計ジャッジ時間 30,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
59,264 KB
testcase_01 AC 37 ms
53,888 KB
testcase_02 AC 38 ms
53,888 KB
testcase_03 AC 37 ms
54,016 KB
testcase_04 AC 37 ms
54,016 KB
testcase_05 WA -
testcase_06 AC 36 ms
54,272 KB
testcase_07 AC 246 ms
144,000 KB
testcase_08 AC 652 ms
190,476 KB
testcase_09 AC 223 ms
136,592 KB
testcase_10 WA -
testcase_11 AC 623 ms
173,752 KB
testcase_12 WA -
testcase_13 AC 238 ms
125,796 KB
testcase_14 AC 222 ms
125,056 KB
testcase_15 AC 277 ms
136,392 KB
testcase_16 AC 311 ms
142,208 KB
testcase_17 AC 858 ms
188,320 KB
testcase_18 AC 478 ms
180,312 KB
testcase_19 WA -
testcase_20 AC 439 ms
152,576 KB
testcase_21 AC 364 ms
173,764 KB
testcase_22 AC 618 ms
208,928 KB
testcase_23 AC 200 ms
138,880 KB
testcase_24 AC 144 ms
112,768 KB
testcase_25 WA -
testcase_26 AC 597 ms
176,588 KB
testcase_27 AC 1,031 ms
229,508 KB
testcase_28 AC 888 ms
188,216 KB
testcase_29 AC 920 ms
192,596 KB
testcase_30 AC 889 ms
201,600 KB
testcase_31 AC 884 ms
194,352 KB
testcase_32 AC 833 ms
196,384 KB
testcase_33 AC 904 ms
219,000 KB
testcase_34 AC 912 ms
192,504 KB
testcase_35 AC 907 ms
200,148 KB
testcase_36 AC 992 ms
216,292 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
    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()
0