結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,012 KB
testcase_01 AC 41 ms
53,492 KB
testcase_02 AC 39 ms
53,028 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 88 ms
67,980 KB
testcase_06 AC 97 ms
68,748 KB
testcase_07 AC 97 ms
68,928 KB
testcase_08 AC 83 ms
68,584 KB
testcase_09 AC 51 ms
62,784 KB
testcase_10 AC 95 ms
68,844 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 50 ms
61,816 KB
testcase_14 AC 112 ms
70,936 KB
testcase_15 AC 121 ms
70,592 KB
testcase_16 AC 75 ms
67,076 KB
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 53 ms
62,704 KB
testcase_20 AC 111 ms
70,132 KB
testcase_21 AC 65 ms
65,988 KB
testcase_22 AC 53 ms
63,296 KB
testcase_23 AC 142 ms
70,648 KB
testcase_24 AC 142 ms
70,960 KB
testcase_25 AC 143 ms
71,084 KB
testcase_26 AC 143 ms
71,912 KB
testcase_27 AC 142 ms
71,468 KB
testcase_28 AC 144 ms
71,288 KB
testcase_29 AC 143 ms
71,560 KB
testcase_30 AC 141 ms
70,728 KB
testcase_31 AC 142 ms
70,860 KB
testcase_32 AC 144 ms
71,792 KB
testcase_33 RE -
testcase_34 AC 38 ms
53,404 KB
testcase_35 AC 40 ms
52,688 KB
testcase_36 AC 46 ms
61,328 KB
testcase_37 AC 41 ms
59,880 KB
testcase_38 AC 132 ms
63,056 KB
testcase_39 AC 132 ms
62,704 KB
testcase_40 AC 131 ms
62,796 KB
testcase_41 AC 131 ms
62,840 KB
testcase_42 AC 130 ms
63,484 KB
testcase_43 AC 128 ms
63,644 KB
testcase_44 AC 128 ms
64,240 KB
testcase_45 AC 136 ms
63,480 KB
testcase_46 AC 130 ms
64,424 KB
testcase_47 AC 130 ms
63,456 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