結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー hir355hir355
提出日時 2021-06-11 21:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,369 ms / 2,000 ms
コード長 1,004 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,160 KB
最終ジャッジ日時 2024-05-08 17:04:55
合計ジャッジ時間 7,634 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 39 ms
52,096 KB
testcase_03 AC 80 ms
66,048 KB
testcase_04 AC 110 ms
66,304 KB
testcase_05 AC 88 ms
65,280 KB
testcase_06 AC 96 ms
65,920 KB
testcase_07 AC 96 ms
66,176 KB
testcase_08 AC 81 ms
65,408 KB
testcase_09 AC 52 ms
62,080 KB
testcase_10 AC 96 ms
65,920 KB
testcase_11 AC 78 ms
64,896 KB
testcase_12 AC 79 ms
65,280 KB
testcase_13 AC 53 ms
61,440 KB
testcase_14 AC 110 ms
66,944 KB
testcase_15 AC 121 ms
66,816 KB
testcase_16 AC 74 ms
64,896 KB
testcase_17 AC 69 ms
64,768 KB
testcase_18 AC 52 ms
61,184 KB
testcase_19 AC 55 ms
61,568 KB
testcase_20 AC 110 ms
66,176 KB
testcase_21 AC 66 ms
63,616 KB
testcase_22 AC 54 ms
61,440 KB
testcase_23 AC 142 ms
67,328 KB
testcase_24 AC 141 ms
67,072 KB
testcase_25 AC 141 ms
67,072 KB
testcase_26 AC 143 ms
67,200 KB
testcase_27 AC 144 ms
67,328 KB
testcase_28 AC 144 ms
67,456 KB
testcase_29 AC 139 ms
66,688 KB
testcase_30 AC 138 ms
66,176 KB
testcase_31 AC 147 ms
67,328 KB
testcase_32 AC 143 ms
67,200 KB
testcase_33 AC 1,369 ms
76,160 KB
testcase_34 AC 38 ms
51,840 KB
testcase_35 AC 42 ms
52,096 KB
testcase_36 AC 47 ms
60,800 KB
testcase_37 AC 45 ms
59,776 KB
testcase_38 AC 132 ms
62,336 KB
testcase_39 AC 132 ms
62,336 KB
testcase_40 AC 132 ms
62,080 KB
testcase_41 AC 131 ms
62,336 KB
testcase_42 AC 130 ms
62,464 KB
testcase_43 AC 129 ms
62,720 KB
testcase_44 AC 129 ms
63,104 KB
testcase_45 AC 132 ms
62,976 KB
testcase_46 AC 133 ms
62,848 KB
testcase_47 AC 134 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ext_gcd(a :int, b :int):
    # Extended Euclidean algorithm
    x0, y0 = 1, 0
    x1, y1 = 0, 1
 
    while b != 0:
        q,r = divmod(a, b)
        x2 = x0 - q * x1
        y2 = y0 - q * y1
 
        a = b
        b = r
        x0, y0 = x1, y1
        x1, y1 = x2, y2
 
    return (a, x0, y0)
 
 
def crt(r1 :int, m1 :int, r2 :int, m2 :int):
    # Chinese Remainder Theorem
    # x = r1 (mod m1),  x = r2 (mod m2)
    # <-> x = r3 (mod m3)
 
    g,p,q = ext_gcd(m1, m2)
 
    if (r2 - r1) % g != 0:
        return 0, -1
    
    m3 = m1 * m2 // g  # lcm of m1 and m2
    r3 = r1 + m1 * ((r2 - r1) // g * p)
    r3 %= m3
 
    return (r3, m3)

n, m = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
ans = 100000000000
for i in range(n):
    for j in range(m):
        if a[i] == b[j]:
            t = crt(i, n, j, m)
            if t[1] != -1 and ans > t[0]:
                ans = t[0]
if ans == 100000000000:
    print(-1)
else:
    print(ans + 1)
0