結果

問題 No.551 夏休みの思い出(2)
ユーザー mkawa2mkawa2
提出日時 2024-11-06 02:11:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,611 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 82,580 KB
最終ジャッジ日時 2024-11-06 02:11:42
合計ジャッジ時間 38,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 TLE -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 TLE -
testcase_47 AC 39 ms
52,716 KB
testcase_48 AC 39 ms
53,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(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-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
# md = 998244353

def pow(a, e):
    res = 1
    while e:
        if e & 1: res = res*a%p
        a = a*a%p
        e >>= 1
    return res

p, r = LI()
q = round(p**0.5)+1

bab = {}
a = 1
for i in range(q):
    bab[a] = i
    a = a*r%p
a = pow(a, p-2)
gia = [1]
for _ in range(q+1): gia.append(gia[-1]*a%p)

def sol(c):
    if c in bab: return bab[c]
    for i, g in enumerate(gia):
        a = c*g%p
        if a in bab:
            j = bab[a]
            return i*q+j
    return -1

i2 = (p+1)//2
for _ in range(II()):
    a, b, c = LI()
    ia = pow(a, p-2)
    b = b*ia%p*i2%p
    c = (pow(b, 2)-c*ia%p)%p
    if c:
        e = sol(c)
        # print(a,b,c,e)
        if e == -1 or e & 1:
            print(-1)
        else:
            w = pow(r, e//2)
            x = (-b+w)%p
            y = (-b-w)%p
            print(x, y)
    else:
        print(-b%p)
0