結果

問題 No.551 夏休みの思い出(2)
ユーザー mkawa2mkawa2
提出日時 2024-11-06 02:14:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,638 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 82,488 KB
最終ジャッジ日時 2024-11-06 02:15:31
合計ジャッジ時間 37,853 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,140 KB
testcase_01 AC 40 ms
54,932 KB
testcase_02 AC 46 ms
60,436 KB
testcase_03 AC 84 ms
77,308 KB
testcase_04 AC 95 ms
77,268 KB
testcase_05 AC 130 ms
78,904 KB
testcase_06 AC 152 ms
78,936 KB
testcase_07 AC 42 ms
58,244 KB
testcase_08 AC 43 ms
59,816 KB
testcase_09 AC 47 ms
58,872 KB
testcase_10 AC 41 ms
55,112 KB
testcase_11 AC 42 ms
59,840 KB
testcase_12 AC 40 ms
53,796 KB
testcase_13 AC 40 ms
53,676 KB
testcase_14 AC 40 ms
54,164 KB
testcase_15 AC 39 ms
53,588 KB
testcase_16 AC 42 ms
59,608 KB
testcase_17 AC 49 ms
62,224 KB
testcase_18 AC 49 ms
62,804 KB
testcase_19 AC 48 ms
61,836 KB
testcase_20 AC 48 ms
61,388 KB
testcase_21 AC 48 ms
62,080 KB
testcase_22 AC 46 ms
60,876 KB
testcase_23 AC 46 ms
61,936 KB
testcase_24 AC 47 ms
61,600 KB
testcase_25 AC 49 ms
63,016 KB
testcase_26 AC 50 ms
62,416 KB
testcase_27 AC 1,536 ms
78,532 KB
testcase_28 AC 1,358 ms
78,852 KB
testcase_29 AC 342 ms
78,932 KB
testcase_30 AC 1,182 ms
78,420 KB
testcase_31 AC 341 ms
78,556 KB
testcase_32 AC 1,177 ms
78,368 KB
testcase_33 AC 1,508 ms
78,528 KB
testcase_34 AC 949 ms
78,412 KB
testcase_35 AC 422 ms
78,384 KB
testcase_36 AC 664 ms
78,496 KB
testcase_37 TLE -
testcase_38 AC 3,381 ms
81,828 KB
testcase_39 AC 1,062 ms
79,172 KB
testcase_40 AC 2,397 ms
80,356 KB
testcase_41 AC 1,758 ms
78,696 KB
testcase_42 AC 3,604 ms
81,536 KB
testcase_43 AC 1,136 ms
79,044 KB
testcase_44 AC 1,579 ms
79,160 KB
testcase_45 AC 1,193 ms
78,652 KB
testcase_46 TLE -
testcase_47 AC 39 ms
53,944 KB
testcase_48 AC 39 ms
54,172 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
            if x>y:x,y=y,x
            print(x, y)
    else:
        print(-b%p)
0