結果
問題 | No.187 中華風 (Hard) |
ユーザー | okayu29 |
提出日時 | 2023-01-31 12:44:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,165 bytes |
コンパイル時間 | 331 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 35,328 KB |
最終ジャッジ日時 | 2024-06-30 16:38:54 |
合計ジャッジ時間 | 12,562 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | AC | 31 ms
11,008 KB |
testcase_18 | WA | - |
testcase_19 | AC | 30 ms
11,008 KB |
testcase_20 | RE | - |
testcase_21 | AC | 31 ms
10,880 KB |
testcase_22 | RE | - |
testcase_23 | AC | 31 ms
11,008 KB |
testcase_24 | WA | - |
ソースコード
from math import gcd from functools import * 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(a, m, md): m = m[:] N = len(m) for i in range(N-1): for j in range(N-1): if i == j: continue g = gcd(m[i], m[j]) if (a[i]-a[j])%g != 0: return None m[i] //= g m.append(md) N += 1 M = [[1]*N for _ 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] @lru_cache(maxsize=None) def rec(i, j): if i == -1: return 0 return (rec(i-1, j) + M[j][i]*(R[i]*(a[i] - rec(i-1, i)) % m[i])) % m[j] return rec(N-2, N-1), 0 n = int(input()) a, m = zip(*(tuple(map(int, input().split())) for _ in range(n))) a, m = list(a), list(m) x = crt(a, m, 10**9+7) if x is None: print(-1) else: x, mm = x if all(ai==0 for ai in a): print(mm) else: print(x)