結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー ayaoniayaoni
提出日時 2021-06-13 00:10:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 62,836 KB
最終ジャッジ日時 2024-12-17 22:56:26
合計ジャッジ時間 4,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,612 KB
testcase_01 AC 38 ms
52,820 KB
testcase_02 AC 36 ms
52,568 KB
testcase_03 AC 41 ms
59,848 KB
testcase_04 AC 41 ms
61,528 KB
testcase_05 AC 43 ms
61,072 KB
testcase_06 AC 43 ms
61,040 KB
testcase_07 AC 44 ms
60,900 KB
testcase_08 AC 43 ms
60,984 KB
testcase_09 AC 41 ms
61,460 KB
testcase_10 AC 42 ms
61,524 KB
testcase_11 AC 41 ms
60,572 KB
testcase_12 AC 42 ms
60,096 KB
testcase_13 AC 42 ms
60,412 KB
testcase_14 AC 42 ms
62,000 KB
testcase_15 AC 42 ms
62,332 KB
testcase_16 AC 40 ms
60,176 KB
testcase_17 AC 41 ms
60,984 KB
testcase_18 AC 44 ms
60,764 KB
testcase_19 AC 40 ms
59,404 KB
testcase_20 AC 40 ms
61,764 KB
testcase_21 AC 41 ms
60,536 KB
testcase_22 AC 41 ms
60,452 KB
testcase_23 AC 42 ms
62,360 KB
testcase_24 AC 41 ms
62,004 KB
testcase_25 AC 41 ms
61,524 KB
testcase_26 AC 41 ms
61,112 KB
testcase_27 AC 41 ms
60,936 KB
testcase_28 AC 40 ms
62,076 KB
testcase_29 AC 41 ms
61,040 KB
testcase_30 AC 42 ms
61,220 KB
testcase_31 AC 44 ms
61,388 KB
testcase_32 AC 44 ms
61,664 KB
testcase_33 AC 140 ms
61,188 KB
testcase_34 AC 40 ms
52,664 KB
testcase_35 AC 37 ms
53,220 KB
testcase_36 AC 40 ms
59,840 KB
testcase_37 AC 41 ms
60,056 KB
testcase_38 AC 134 ms
62,440 KB
testcase_39 AC 141 ms
61,724 KB
testcase_40 AC 133 ms
61,716 KB
testcase_41 AC 136 ms
61,276 KB
testcase_42 AC 137 ms
62,836 KB
testcase_43 AC 133 ms
61,404 KB
testcase_44 AC 131 ms
60,960 KB
testcase_45 AC 132 ms
61,636 KB
testcase_46 AC 130 ms
61,464 KB
testcase_47 AC 130 ms
62,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
A = LI()
B = LI()

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