結果

問題 No.187 中華風 (Hard)
ユーザー cielciel
提出日時 2015-04-20 17:45:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 770 ms / 3,000 ms
コード長 499 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-07-04 18:26:36
合計ジャッジ時間 9,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
6,656 KB
testcase_01 AC 13 ms
6,528 KB
testcase_02 AC 42 ms
6,656 KB
testcase_03 AC 41 ms
6,656 KB
testcase_04 AC 712 ms
6,656 KB
testcase_05 AC 701 ms
6,784 KB
testcase_06 AC 691 ms
6,784 KB
testcase_07 AC 699 ms
6,656 KB
testcase_08 AC 770 ms
6,656 KB
testcase_09 AC 770 ms
6,656 KB
testcase_10 AC 768 ms
6,784 KB
testcase_11 AC 694 ms
6,912 KB
testcase_12 AC 703 ms
6,656 KB
testcase_13 AC 15 ms
6,528 KB
testcase_14 AC 15 ms
6,528 KB
testcase_15 AC 36 ms
6,400 KB
testcase_16 AC 37 ms
6,400 KB
testcase_17 AC 11 ms
6,528 KB
testcase_18 AC 13 ms
6,656 KB
testcase_19 AC 10 ms
6,400 KB
testcase_20 AC 537 ms
6,528 KB
testcase_21 AC 11 ms
6,272 KB
testcase_22 AC 711 ms
6,784 KB
testcase_23 AC 11 ms
6,272 KB
testcase_24 AC 10 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
def egcd(x,y):
	if y==0: return (x,1,0)
	g,a,b=egcd(y,x%y)
	return (g,b,a-x//y*b)

def perform(a1,m1,a2,m2):
	g,x,y=egcd(m1,m2)
	if (a2-a1)%g: raise ValueError
	l=m1//g*m2
	return ((a1+(a2-a1)//g*x*m1)%l,l)

def chinese(a):
	if not a: return None
	try:
		return reduce(lambda x,y:perform(*(x+y)),a)
	except ValueError:
		return None

a=[]
for _ in range(int(raw_input())):
	a.append(tuple(int(e) for e in raw_input().split()))
r=chinese(a)
print(r[not r[0]]%(10**9+7) if r else -1)
0