結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー sangonanasangonana
提出日時 2021-06-11 21:40:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-05-08 17:13:30
合計ジャッジ時間 7,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 85 ms
67,456 KB
testcase_04 AC 123 ms
70,400 KB
testcase_05 AC 96 ms
67,328 KB
testcase_06 AC 103 ms
68,224 KB
testcase_07 AC 100 ms
68,480 KB
testcase_08 AC 88 ms
67,968 KB
testcase_09 AC 53 ms
62,336 KB
testcase_10 AC 101 ms
68,480 KB
testcase_11 AC 80 ms
65,024 KB
testcase_12 AC 85 ms
67,584 KB
testcase_13 AC 54 ms
61,696 KB
testcase_14 AC 120 ms
70,144 KB
testcase_15 AC 126 ms
69,888 KB
testcase_16 AC 81 ms
66,176 KB
testcase_17 AC 69 ms
64,256 KB
testcase_18 AC 53 ms
61,440 KB
testcase_19 AC 54 ms
61,952 KB
testcase_20 AC 114 ms
69,120 KB
testcase_21 AC 67 ms
65,024 KB
testcase_22 AC 55 ms
62,080 KB
testcase_23 AC 145 ms
70,272 KB
testcase_24 AC 146 ms
70,272 KB
testcase_25 AC 144 ms
70,528 KB
testcase_26 AC 149 ms
70,912 KB
testcase_27 AC 148 ms
70,912 KB
testcase_28 AC 144 ms
71,040 KB
testcase_29 AC 146 ms
70,016 KB
testcase_30 AC 148 ms
69,760 KB
testcase_31 AC 149 ms
70,784 KB
testcase_32 AC 149 ms
70,656 KB
testcase_33 AC 257 ms
69,504 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 39 ms
52,096 KB
testcase_36 AC 49 ms
61,056 KB
testcase_37 AC 45 ms
59,904 KB
testcase_38 AC 135 ms
62,336 KB
testcase_39 AC 134 ms
62,336 KB
testcase_40 AC 132 ms
62,208 KB
testcase_41 AC 133 ms
62,848 KB
testcase_42 AC 129 ms
62,080 KB
testcase_43 AC 128 ms
62,976 KB
testcase_44 AC 136 ms
63,488 KB
testcase_45 AC 136 ms
62,720 KB
testcase_46 AC 129 ms
62,848 KB
testcase_47 AC 135 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]:
			try:
				ret=crt([i,j],[n,m])
				ans=min(ans,ret+1)
			except:
				continue

if ans==inf:
	ans=-1

print(ans)
0