結果
問題 | No.187 中華風 (Hard) |
ユーザー | proribone |
提出日時 | 2024-02-17 01:28:06 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 544 ms / 3,000 ms |
コード長 | 1,412 bytes |
コンパイル時間 | 339 ms |
コンパイル使用メモリ | 82,480 KB |
実行使用メモリ | 77,908 KB |
最終ジャッジ日時 | 2024-09-28 23:24:21 |
合計ジャッジ時間 | 8,570 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
63,724 KB |
testcase_01 | AC | 45 ms
62,572 KB |
testcase_02 | AC | 427 ms
76,784 KB |
testcase_03 | AC | 388 ms
76,768 KB |
testcase_04 | AC | 481 ms
76,964 KB |
testcase_05 | AC | 500 ms
76,948 KB |
testcase_06 | AC | 487 ms
76,988 KB |
testcase_07 | AC | 502 ms
77,156 KB |
testcase_08 | AC | 363 ms
77,344 KB |
testcase_09 | AC | 382 ms
77,044 KB |
testcase_10 | AC | 398 ms
77,692 KB |
testcase_11 | AC | 544 ms
76,684 KB |
testcase_12 | AC | 447 ms
77,056 KB |
testcase_13 | AC | 133 ms
76,596 KB |
testcase_14 | AC | 135 ms
76,692 KB |
testcase_15 | AC | 452 ms
77,304 KB |
testcase_16 | AC | 492 ms
77,908 KB |
testcase_17 | AC | 35 ms
52,588 KB |
testcase_18 | AC | 45 ms
62,484 KB |
testcase_19 | AC | 32 ms
52,476 KB |
testcase_20 | AC | 358 ms
76,840 KB |
testcase_21 | AC | 34 ms
53,744 KB |
testcase_22 | AC | 470 ms
76,876 KB |
testcase_23 | AC | 34 ms
52,960 KB |
testcase_24 | AC | 32 ms
53,356 KB |
ソースコード
def pregarner(r,m): def gcd(a,b): if b==0: return a return gcd(b,a%b) n=len(m) for i in range(n): for j in range(i): g=gcd(m[i],m[j]) if (r[i]-r[j])%g!=0: return False m[i]//=g;m[j]//=g gi=gcd(m[i],g) gj=g//gi while gcd(gi,gj)!=1: h=gcd(gi,gj) gi*=h gj//=h m[i]*=gi m[j]*=gj return True def garner(r,m,MOD): def extgcd(a,b): if b==0: return 1,0,a else: c,x,g=extgcd(b,a%b) return x,c-a//b*x,g def modinv(a,m): x,_,_=extgcd(a,m) return x%m n=len(r) m.append(MOD) constants=[0]*(n+1) coeffs=[1]*(n+1) for k in range(len(r)): t=(r[k]-constants[k])*modinv(coeffs[k],m[k])%m[k] for i in range(k+1,len(m)): constants[i]=(constants[i]+t*coeffs[i])%m[i] coeffs[i]=coeffs[i]*m[k]%m[i] return constants[-1], coeffs[-1] N=int(input()) X,Y=[],[] for _ in range(N): x,y=map(int,input().split()) X.append(x) Y.append(y) exist_non_zero=any([x!=0 for x in X]) if not pregarner(X,Y): print(-1) else: res,lcm=garner(X,Y,10**9+7) if not exist_non_zero: print(lcm) else: print(res)