結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー 👑 rin204rin204
提出日時 2022-03-12 22:58:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 63,216 KB
最終ジャッジ日時 2024-09-17 07:24:04
合計ジャッジ時間 5,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,524 KB
testcase_01 AC 39 ms
52,576 KB
testcase_02 AC 37 ms
52,256 KB
testcase_03 AC 44 ms
61,340 KB
testcase_04 AC 44 ms
61,416 KB
testcase_05 AC 44 ms
61,348 KB
testcase_06 AC 43 ms
60,768 KB
testcase_07 AC 44 ms
60,864 KB
testcase_08 AC 42 ms
60,116 KB
testcase_09 AC 47 ms
59,976 KB
testcase_10 AC 42 ms
60,476 KB
testcase_11 AC 43 ms
61,032 KB
testcase_12 AC 44 ms
59,724 KB
testcase_13 AC 42 ms
60,796 KB
testcase_14 AC 44 ms
61,348 KB
testcase_15 AC 44 ms
61,744 KB
testcase_16 AC 43 ms
61,200 KB
testcase_17 AC 42 ms
59,932 KB
testcase_18 AC 44 ms
60,128 KB
testcase_19 AC 44 ms
59,160 KB
testcase_20 AC 44 ms
62,128 KB
testcase_21 AC 44 ms
60,124 KB
testcase_22 AC 43 ms
60,328 KB
testcase_23 AC 45 ms
61,452 KB
testcase_24 AC 43 ms
61,676 KB
testcase_25 AC 45 ms
61,456 KB
testcase_26 AC 46 ms
61,864 KB
testcase_27 AC 45 ms
61,652 KB
testcase_28 AC 44 ms
62,608 KB
testcase_29 AC 45 ms
60,856 KB
testcase_30 AC 43 ms
61,780 KB
testcase_31 AC 43 ms
62,308 KB
testcase_32 AC 43 ms
61,760 KB
testcase_33 AC 186 ms
61,328 KB
testcase_34 AC 37 ms
52,516 KB
testcase_35 AC 38 ms
53,160 KB
testcase_36 AC 42 ms
60,336 KB
testcase_37 AC 44 ms
60,004 KB
testcase_38 AC 187 ms
62,088 KB
testcase_39 AC 186 ms
62,344 KB
testcase_40 AC 187 ms
61,596 KB
testcase_41 AC 186 ms
62,332 KB
testcase_42 AC 185 ms
62,428 KB
testcase_43 AC 182 ms
62,328 KB
testcase_44 AC 181 ms
63,040 KB
testcase_45 AC 184 ms
62,764 KB
testcase_46 AC 182 ms
62,696 KB
testcase_47 AC 183 ms
63,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

i = j = 0
x = 1
for _ in range(n * m):
    if A[i] == B[j]:
        print(x)
        exit()
    x += 1
    i += 1
    j += 1
    if i == n:
        i = 0
    if j == m:
        j = 0
    
print(-1)
0