結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー tktk_snsntktk_snsn
提出日時 2021-06-11 21:53:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,336 KB
最終ジャッジ日時 2024-05-08 17:34:46
合計ジャッジ時間 25,354 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,696 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 891 ms
11,136 KB
testcase_04 AC 1,966 ms
11,392 KB
testcase_05 AC 1,281 ms
11,264 KB
testcase_06 AC 1,726 ms
11,392 KB
testcase_07 AC 1,622 ms
11,392 KB
testcase_08 AC 1,027 ms
11,136 KB
testcase_09 AC 134 ms
11,392 KB
testcase_10 AC 1,564 ms
11,264 KB
testcase_11 AC 986 ms
11,136 KB
testcase_12 AC 851 ms
11,264 KB
testcase_13 AC 149 ms
11,136 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 805 ms
11,136 KB
testcase_17 AC 471 ms
11,008 KB
testcase_18 AC 116 ms
10,752 KB
testcase_19 AC 209 ms
11,008 KB
testcase_20 TLE -
testcase_21 AC 409 ms
11,136 KB
testcase_22 AC 156 ms
11,008 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def extgcd(a, b):
    """
    拡張Euclidの互除法
    INPUT:
        a, b
    OUTPUT:
        d: gcd(a, b)
        (x, y): ax + by = d の解
    """
    if b == 0:
        return a, (1, 0)
    d, (y, x) = extgcd(b, a % b)
    y -= a // b * x
    return d, (x, y)


N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
g, (x, y) = extgcd(N, -M)

lcm = N * (M // -g)

ans = 10**18
for i, a in enumerate(A, 1):
    for j, b in enumerate(B, 1):
        if a != b:
            continue
        if (j - i) % g != 0:
            continue
        d = (j - i) // g
        tmp = d * N * x + i
        tmp %= lcm
        ans = min(ans, tmp)


if ans >= 10**18:
    ans = -1
print(ans)
0