結果

問題 No.187 中華風 (Hard)
ユーザー kmjpkmjp
提出日時 2015-04-19 23:59:43
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 515 ms / 3,000 ms
コード長 572 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-07-04 19:01:55
合計ジャッジ時間 8,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
77,824 KB
testcase_01 AC 98 ms
78,336 KB
testcase_02 AC 241 ms
78,720 KB
testcase_03 AC 253 ms
78,976 KB
testcase_04 AC 496 ms
79,488 KB
testcase_05 AC 478 ms
79,744 KB
testcase_06 AC 489 ms
79,360 KB
testcase_07 AC 487 ms
79,616 KB
testcase_08 AC 515 ms
79,616 KB
testcase_09 AC 514 ms
79,488 KB
testcase_10 AC 512 ms
79,744 KB
testcase_11 AC 487 ms
79,232 KB
testcase_12 AC 483 ms
79,360 KB
testcase_13 AC 103 ms
78,336 KB
testcase_14 AC 103 ms
77,952 KB
testcase_15 AC 139 ms
78,208 KB
testcase_16 AC 148 ms
78,336 KB
testcase_17 AC 86 ms
75,776 KB
testcase_18 AC 98 ms
78,336 KB
testcase_19 AC 85 ms
75,520 KB
testcase_20 AC 372 ms
79,104 KB
testcase_21 AC 93 ms
75,648 KB
testcase_22 AC 483 ms
79,616 KB
testcase_23 AC 85 ms
75,648 KB
testcase_24 AC 85 ms
75,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math

def ext_gcd(p,q):
	if q==0:
		return (p,1,0)
	g,y,x = ext_gcd(q,p%q);
	y -= p/q*x
	return (g,x,y)

def cmt(a1,mo1,a2,mo2):
	g,x,y=ext_gcd(mo1,mo2)
	a1%=mo1
	a2%=mo2
	if a1%g != a2%g:
		return (-1,0)
	lcm=mo1*(mo2/g)
	v=a1+((a2-a1)%lcm)*x%lcm*(mo1/g)
	return (((v%lcm)+lcm) % lcm,lcm)

N=input()
P=[]
for i in range(N):
	P.append(map(int,raw_input().strip().split(" ")))

T=[P[0][0],P[0][1]]
for i in range(1,N):
	T2=cmt(T[0],T[1],P[i][0],P[i][1])
	if T2[0]<0:
		print -1
		sys.exit()
	T=[T2[0],T2[1]]

if T[0]==0:
	T[0]=T[1]

print T[0]%1000000007
0