結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー ygd.ygd.
提出日時 2021-06-13 15:52:38
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,273 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 847,680 KB
最終ジャッジ日時 2024-06-02 08:29:09
合計ジャッジ時間 21,257 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 35 ms
53,760 KB
testcase_02 AC 34 ms
53,888 KB
testcase_03 AC 321 ms
288,900 KB
testcase_04 AC 1,009 ms
489,852 KB
testcase_05 AC 505 ms
336,940 KB
testcase_06 AC 721 ms
488,684 KB
testcase_07 AC 638 ms
425,032 KB
testcase_08 AC 423 ms
346,812 KB
testcase_09 AC 105 ms
174,444 KB
testcase_10 AC 658 ms
411,728 KB
testcase_11 AC 364 ms
303,828 KB
testcase_12 AC 322 ms
309,240 KB
testcase_13 AC 108 ms
192,112 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 316 ms
280,876 KB
testcase_17 AC 221 ms
247,136 KB
testcase_18 AC 100 ms
165,096 KB
testcase_19 AC 137 ms
245,344 KB
testcase_20 MLE -
testcase_21 AC 198 ms
241,472 KB
testcase_22 AC 113 ms
198,512 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 AC 34 ms
55,472 KB
testcase_35 AC 32 ms
54,716 KB
testcase_36 AC 38 ms
63,060 KB
testcase_37 AC 38 ms
63,168 KB
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
権限があれば一括ダウンロードができます

ソースコード

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()))
    AA = []
    for _ in range(M):
        AA += A
    BB = []
    for _ in range(N):
        BB += B
    #print(AA)
    for i in range(N*M):
        if AA[i] == BB[i]:
            print(i+1)
            exit()
    print(-1)
    exit()
    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]:
                #print(a,p,q)
                x,m = ChiniseRem(p,N,q,M)
                ans = min(ans, x)
    if ans == INF:
        print(-1)
    else:
        print(ans+1)

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