結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー titiatitia
提出日時 2022-02-10 01:00:14
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 1,620 ms
コンパイル使用メモリ 76,692 KB
実行使用メモリ 78,384 KB
最終ジャッジ日時 2024-06-25 05:43:05
合計ジャッジ時間 8,299 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,780 KB
testcase_01 AC 72 ms
75,580 KB
testcase_02 AC 73 ms
75,308 KB
testcase_03 AC 79 ms
77,324 KB
testcase_04 AC 76 ms
76,968 KB
testcase_05 AC 73 ms
77,468 KB
testcase_06 AC 76 ms
77,464 KB
testcase_07 AC 77 ms
77,196 KB
testcase_08 AC 74 ms
76,952 KB
testcase_09 AC 74 ms
77,488 KB
testcase_10 AC 77 ms
77,088 KB
testcase_11 AC 76 ms
77,580 KB
testcase_12 AC 75 ms
76,964 KB
testcase_13 AC 74 ms
77,444 KB
testcase_14 AC 77 ms
77,044 KB
testcase_15 AC 76 ms
76,944 KB
testcase_16 AC 76 ms
77,444 KB
testcase_17 AC 79 ms
77,068 KB
testcase_18 AC 78 ms
77,196 KB
testcase_19 AC 75 ms
77,360 KB
testcase_20 AC 77 ms
77,448 KB
testcase_21 AC 77 ms
77,456 KB
testcase_22 AC 75 ms
77,336 KB
testcase_23 AC 78 ms
78,096 KB
testcase_24 AC 79 ms
77,836 KB
testcase_25 AC 77 ms
78,384 KB
testcase_26 AC 78 ms
78,220 KB
testcase_27 AC 80 ms
77,852 KB
testcase_28 AC 80 ms
78,076 KB
testcase_29 AC 79 ms
77,944 KB
testcase_30 AC 77 ms
78,124 KB
testcase_31 AC 78 ms
78,136 KB
testcase_32 AC 79 ms
78,108 KB
testcase_33 AC 179 ms
77,704 KB
testcase_34 AC 72 ms
75,540 KB
testcase_35 AC 72 ms
75,532 KB
testcase_36 AC 74 ms
77,704 KB
testcase_37 AC 76 ms
76,940 KB
testcase_38 AC 200 ms
77,980 KB
testcase_39 AC 198 ms
78,092 KB
testcase_40 AC 196 ms
77,976 KB
testcase_41 AC 200 ms
77,940 KB
testcase_42 AC 195 ms
77,840 KB
testcase_43 AC 191 ms
77,852 KB
testcase_44 AC 191 ms
77,972 KB
testcase_45 AC 198 ms
78,112 KB
testcase_46 AC 191 ms
77,832 KB
testcase_47 AC 199 ms
78,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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]:
        print(i+1)
        break
else:
    print(-1)
0