結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-11 21:28:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,800 KB
最終ジャッジ日時 2024-12-14 22:24:40
合計ジャッジ時間 5,079 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin
N,M = map(int,stdin.readline().split())

A = list(map(int,stdin.readline().split()))
B = list(map(int,stdin.readline().split()))

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