結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー ygd.ygd.
提出日時 2021-06-13 16:01:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,052 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,080 KB
最終ジャッジ日時 2024-06-02 08:36:55
合計ジャッジ時間 4,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 71 ms
70,272 KB
testcase_04 AC 78 ms
74,240 KB
testcase_05 AC 71 ms
71,552 KB
testcase_06 AC 95 ms
77,696 KB
testcase_07 AC 87 ms
77,696 KB
testcase_08 AC 88 ms
77,440 KB
testcase_09 AC 52 ms
64,000 KB
testcase_10 AC 76 ms
74,112 KB
testcase_11 AC 70 ms
70,784 KB
testcase_12 AC 79 ms
75,008 KB
testcase_13 AC 53 ms
64,128 KB
testcase_14 AC 98 ms
77,696 KB
testcase_15 AC 94 ms
77,952 KB
testcase_16 AC 70 ms
70,272 KB
testcase_17 AC 63 ms
67,712 KB
testcase_18 AC 50 ms
62,720 KB
testcase_19 AC 50 ms
63,104 KB
testcase_20 AC 90 ms
77,952 KB
testcase_21 AC 59 ms
66,560 KB
testcase_22 AC 53 ms
63,616 KB
testcase_23 AC 86 ms
78,080 KB
testcase_24 AC 86 ms
77,696 KB
testcase_25 AC 86 ms
77,696 KB
testcase_26 AC 91 ms
77,952 KB
testcase_27 AC 89 ms
77,952 KB
testcase_28 AC 86 ms
77,440 KB
testcase_29 AC 84 ms
77,312 KB
testcase_30 AC 86 ms
77,824 KB
testcase_31 AC 87 ms
77,568 KB
testcase_32 AC 85 ms
77,824 KB
testcase_33 AC 221 ms
67,072 KB
testcase_34 AC 41 ms
53,760 KB
testcase_35 AC 41 ms
53,888 KB
testcase_36 AC 50 ms
61,952 KB
testcase_37 AC 48 ms
61,696 KB
testcase_38 AC 55 ms
67,072 KB
testcase_39 AC 54 ms
66,688 KB
testcase_40 AC 54 ms
66,816 KB
testcase_41 AC 55 ms
67,072 KB
testcase_42 AC 54 ms
66,944 KB
testcase_43 AC 56 ms
66,944 KB
testcase_44 AC 56 ms
66,944 KB
testcase_45 AC 56 ms
67,072 KB
testcase_46 AC 56 ms
66,944 KB
testcase_47 AC 56 ms
67,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def Ext_gcd(a,b): #GCD,x,yを返す。ax +by = GCD
  if b == 0:
    return (a,1,0)
  g,y,x = Ext_gcd(b,a%b)
  y -= a//b*x
  return (g,x,y)

def ChiniseRem(b1,m1,b2,m2):
  g,p,q = Ext_gcd(m1,m2)
  if (b1-b2)%g != 0:
    return (0,-1)
  m = m1*m2//g
  temp = (b2-b1)//g*p%(m2//g)
  x = (b1 + m1*temp)%m
  return (x,m)

def main():
    N,M = map(int,input().split()); INF = float("inf")
    A = list(map(int,input().split()))
    B = list(map(int,input().split()))
    adic = defaultdict(list)
    bdic = defaultdict(list)
    for i,a in enumerate(A):
        adic[a].append(i)
    for i,b in enumerate(B):
        bdic[b].append(i)
    #print(adic)
    #print(bdic)
    ans = INF
    for a in adic:
        if a not in bdic: continue
        for p in adic[a]:
            for q in bdic[a]:
                x,m = ChiniseRem(p,N,q,M)
                if (x,m) == (0,-1): continue
                ans = min(ans, x)
    if ans == INF:
        print(-1)
    else:
        print(ans+1)

if __name__ == '__main__':
    main()
0