結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー nohakai3nohakai3
提出日時 2022-07-01 16:36:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 62,296 KB
最終ジャッジ日時 2024-05-04 10:43:43
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,480 KB
testcase_01 AC 31 ms
52,192 KB
testcase_02 AC 32 ms
52,756 KB
testcase_03 AC 41 ms
60,480 KB
testcase_04 AC 38 ms
60,668 KB
testcase_05 AC 37 ms
60,284 KB
testcase_06 AC 36 ms
61,292 KB
testcase_07 AC 36 ms
60,444 KB
testcase_08 AC 41 ms
60,464 KB
testcase_09 AC 40 ms
60,844 KB
testcase_10 AC 39 ms
60,480 KB
testcase_11 AC 41 ms
60,888 KB
testcase_12 AC 42 ms
60,404 KB
testcase_13 AC 41 ms
59,352 KB
testcase_14 AC 39 ms
62,116 KB
testcase_15 AC 40 ms
61,124 KB
testcase_16 AC 39 ms
60,768 KB
testcase_17 AC 38 ms
61,196 KB
testcase_18 AC 35 ms
60,596 KB
testcase_19 AC 36 ms
61,004 KB
testcase_20 AC 37 ms
60,784 KB
testcase_21 AC 35 ms
60,908 KB
testcase_22 AC 35 ms
59,344 KB
testcase_23 AC 37 ms
61,840 KB
testcase_24 AC 37 ms
61,604 KB
testcase_25 AC 38 ms
60,856 KB
testcase_26 AC 39 ms
61,164 KB
testcase_27 AC 37 ms
61,864 KB
testcase_28 AC 37 ms
62,168 KB
testcase_29 AC 38 ms
61,828 KB
testcase_30 AC 38 ms
61,140 KB
testcase_31 AC 39 ms
62,188 KB
testcase_32 AC 38 ms
61,480 KB
testcase_33 AC 130 ms
60,684 KB
testcase_34 AC 33 ms
52,880 KB
testcase_35 AC 32 ms
53,208 KB
testcase_36 AC 37 ms
61,400 KB
testcase_37 AC 37 ms
59,804 KB
testcase_38 AC 125 ms
60,844 KB
testcase_39 AC 131 ms
60,720 KB
testcase_40 AC 125 ms
60,868 KB
testcase_41 AC 125 ms
61,704 KB
testcase_42 AC 122 ms
60,472 KB
testcase_43 AC 121 ms
62,296 KB
testcase_44 AC 124 ms
60,972 KB
testcase_45 AC 127 ms
61,468 KB
testcase_46 AC 127 ms
61,208 KB
testcase_47 AC 130 ms
60,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

for i in range(N * M):
    if A[i % N] != B[i % M]:
        continue
    print(i + 1)
    break
else:
    print(-1)
0