結果

問題 No.187 中華風 (Hard)
ユーザー okayu29okayu29
提出日時 2023-02-07 12:35:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 591 ms / 3,000 ms
コード長 1,562 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,044 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-07-05 09:43:26
合計ジャッジ時間 10,571 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,616 KB
testcase_01 AC 53 ms
63,232 KB
testcase_02 AC 536 ms
96,768 KB
testcase_03 AC 529 ms
95,956 KB
testcase_04 AC 583 ms
95,488 KB
testcase_05 AC 566 ms
95,360 KB
testcase_06 AC 570 ms
94,920 KB
testcase_07 AC 574 ms
96,512 KB
testcase_08 AC 560 ms
96,640 KB
testcase_09 AC 577 ms
96,256 KB
testcase_10 AC 584 ms
96,384 KB
testcase_11 AC 581 ms
96,896 KB
testcase_12 AC 591 ms
95,668 KB
testcase_13 AC 375 ms
94,720 KB
testcase_14 AC 371 ms
94,976 KB
testcase_15 AC 546 ms
96,768 KB
testcase_16 AC 534 ms
96,512 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 50 ms
62,208 KB
testcase_19 AC 38 ms
52,352 KB
testcase_20 AC 466 ms
93,568 KB
testcase_21 AC 38 ms
52,608 KB
testcase_22 AC 570 ms
96,228 KB
testcase_23 AC 38 ms
52,864 KB
testcase_24 AC 37 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
sys.setrecursionlimit(10**6)

def extgcd(a, b, x1=1, y1=0, x2=0, y2=1):
    if b == 0:
        return x1, y1
    q = a//b
    return extgcd(b, a%b, x2 ,y2, x1-x2*q, y1-y2*q)

def crt(b, m, md):
    b = b[:]
    m = m + [md]
    N = len(m)
    M = [[1]*N for i in range(N)]
    R = [0]*N
    for i in range(N):
        for j in range(1, i+1):
            M[i][j] = (M[i][j-1] * m[j-1]) % m[i]
        R[i] = extgcd(M[i][i], m[i])[0] % m[i] 
    memo = [[-1]*N for i in range(N)]
    def rec(i, j):
        if i == -1:
            return 0
        if memo[i][j] >= 0:
            return memo[i][j]
        v = (rec(i-1, j) + M[j][i]*(R[i]*(b[i]-rec(i-1, i))%m[i])) % m[j]
        memo[i][j] = v
        return memo[i][j]
    rec(N-2, N-1)
    return memo[N-2][N-1], M[N-1][N-1]


def pre_garner(b, m):
    for i in range(len(m)):
        for j in range(len(m)):
            if i == j:
                continue
            d = gcd(m[i], m[j])
            if (b[i]-b[j])%d != 0:
                return False
            m[i] //= d
            while True:
                v = gcd(m[i], d)
                if v == 1:
                    break
                m[i] *= v
                m[j] //= v
                d //= v
            b[i] %= m[i]
            b[j] %= m[j]
    return True
    
n = int(input())
a, m = zip(*(tuple(map(int, input().split())) for _ in range(n)))
a, m = list(a), list(m)
if not pre_garner(a, m):
    print(-1)
    exit()
x, mm = crt(a, m, 10**9+7)
if all(ai==0 for ai in a):
    print(mm)
else:
    print(x)

0