結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー sangonanasangonana
提出日時 2021-06-11 21:31:59
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 785 bytes
コンパイル時間 1,422 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 71,552 KB
最終ジャッジ日時 2024-05-08 17:00:31
合計ジャッジ時間 6,131 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 87 ms
67,840 KB
testcase_06 AC 101 ms
68,480 KB
testcase_07 AC 97 ms
68,608 KB
testcase_08 AC 82 ms
68,224 KB
testcase_09 AC 51 ms
62,336 KB
testcase_10 AC 96 ms
68,224 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 52 ms
61,952 KB
testcase_14 AC 111 ms
70,016 KB
testcase_15 AC 119 ms
70,144 KB
testcase_16 AC 74 ms
66,944 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 53 ms
62,336 KB
testcase_20 AC 108 ms
69,632 KB
testcase_21 AC 63 ms
65,664 KB
testcase_22 AC 50 ms
62,080 KB
testcase_23 AC 144 ms
70,784 KB
testcase_24 AC 141 ms
70,784 KB
testcase_25 AC 141 ms
70,528 KB
testcase_26 AC 141 ms
71,552 KB
testcase_27 AC 142 ms
71,160 KB
testcase_28 AC 144 ms
71,424 KB
testcase_29 AC 141 ms
70,144 KB
testcase_30 AC 142 ms
69,888 KB
testcase_31 AC 141 ms
70,936 KB
testcase_32 AC 142 ms
71,040 KB
testcase_33 RE -
testcase_34 AC 38 ms
52,480 KB
testcase_35 AC 38 ms
52,352 KB
testcase_36 AC 46 ms
61,056 KB
testcase_37 AC 43 ms
60,032 KB
testcase_38 AC 132 ms
62,848 KB
testcase_39 AC 130 ms
62,848 KB
testcase_40 AC 132 ms
62,976 KB
testcase_41 AC 130 ms
62,720 KB
testcase_42 AC 129 ms
62,888 KB
testcase_43 AC 126 ms
63,616 KB
testcase_44 AC 129 ms
63,616 KB
testcase_45 AC 137 ms
62,976 KB
testcase_46 AC 130 ms
63,104 KB
testcase_47 AC 130 ms
63,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
def crt(R,M):
	def ex_gcd(a,b,c):
		GCD=gcd(a,b)
		if GCD>1:
			if c%GCD!=0:
				return -1
			else:
				a//=GCD
				b//=GCD
				c//=GCD
		x1,y1,m=1,0,a
		x2,y2,n=0,1,b
		while m%n!=0:
			q=m//n
			x1,y1,m,x2,y2,n=\
			x2,y2,n,x1-q*x2,y1-q*y2,m-q*n
		return (x2*c,y2*c)

	N=len(M)
	for i in range(N-1):
		D=gcd(M[i],M[i+1])
		if (R[i+1]-R[i])%D!=0:
			return None
		P,Q=ex_gcd(M[i],M[i+1],D)
		ret=R[i]+M[i]*((R[i+1]-R[i])//D)*P
		ret%=M[i]*M[i+1]//D
		if i!=N-2:
			R[i+1]=ret
			M[i+1]=M[i]*M[i+1]//D
	return ret

n,m=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
inf=10**18
ans=inf
for i in range(n):
	for j in range(m):
		if a[i]==b[j]:
			ret=crt([i,j],[n,m])
			ans=min(ans,ret+1)

if ans==inf:
	ans=-1

print(ans)
0