結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー hiragnhiragn
提出日時 2022-11-25 17:43:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 696 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 926 ms
コンパイル使用メモリ 82,620 KB
実行使用メモリ 62,520 KB
最終ジャッジ日時 2024-10-02 00:49:18
合計ジャッジ時間 9,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,592 KB
testcase_01 AC 39 ms
54,016 KB
testcase_02 AC 39 ms
52,568 KB
testcase_03 AC 46 ms
61,136 KB
testcase_04 AC 42 ms
61,872 KB
testcase_05 AC 46 ms
60,520 KB
testcase_06 AC 44 ms
60,976 KB
testcase_07 AC 43 ms
61,116 KB
testcase_08 AC 43 ms
59,948 KB
testcase_09 AC 43 ms
61,156 KB
testcase_10 AC 43 ms
60,328 KB
testcase_11 AC 43 ms
60,536 KB
testcase_12 AC 42 ms
60,436 KB
testcase_13 AC 42 ms
59,872 KB
testcase_14 AC 43 ms
62,076 KB
testcase_15 AC 46 ms
62,048 KB
testcase_16 AC 42 ms
60,348 KB
testcase_17 AC 44 ms
59,764 KB
testcase_18 AC 43 ms
60,548 KB
testcase_19 AC 42 ms
60,420 KB
testcase_20 AC 42 ms
60,676 KB
testcase_21 AC 43 ms
59,896 KB
testcase_22 AC 41 ms
60,180 KB
testcase_23 AC 43 ms
61,132 KB
testcase_24 AC 44 ms
61,672 KB
testcase_25 AC 42 ms
61,784 KB
testcase_26 AC 44 ms
61,848 KB
testcase_27 AC 43 ms
61,292 KB
testcase_28 AC 43 ms
61,084 KB
testcase_29 AC 43 ms
61,988 KB
testcase_30 AC 42 ms
61,924 KB
testcase_31 AC 42 ms
60,652 KB
testcase_32 AC 42 ms
62,164 KB
testcase_33 AC 43 ms
61,620 KB
testcase_34 AC 38 ms
52,632 KB
testcase_35 AC 38 ms
53,908 KB
testcase_36 AC 41 ms
59,636 KB
testcase_37 AC 40 ms
60,304 KB
testcase_38 AC 678 ms
62,140 KB
testcase_39 AC 685 ms
62,060 KB
testcase_40 AC 682 ms
61,308 KB
testcase_41 AC 696 ms
60,804 KB
testcase_42 AC 679 ms
61,424 KB
testcase_43 AC 644 ms
60,340 KB
testcase_44 AC 659 ms
62,520 KB
testcase_45 AC 685 ms
60,736 KB
testcase_46 AC 658 ms
60,868 KB
testcase_47 AC 661 ms
61,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def main():
    n, m = map(int, input().split())
    a = list(map(int, input().split()))
    b = list(map(int, input().split()))

    for i in range(m * n // math.gcd(m, n)):
        if a[i % n] == b[i % m]:
            exit(print(i + 1))
    print(-1)


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