結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー otsunekootsuneko
提出日時 2021-06-11 21:54:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 300 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 845,084 KB
最終ジャッジ日時 2024-05-08 17:35:35
合計ジャッジ時間 17,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 43 ms
57,856 KB
testcase_02 AC 39 ms
53,248 KB
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 298 ms
450,688 KB
testcase_10 MLE -
testcase_11 AC 167 ms
490,752 KB
testcase_12 AC 161 ms
443,904 KB
testcase_13 AC 140 ms
380,544 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 153 ms
449,920 KB
testcase_17 AC 128 ms
348,416 KB
testcase_18 AC 94 ms
241,920 KB
testcase_19 AC 101 ms
253,952 KB
testcase_20 MLE -
testcase_21 AC 138 ms
389,632 KB
testcase_22 AC 116 ms
295,296 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 AC 40 ms
51,968 KB
testcase_35 AC 41 ms
57,728 KB
testcase_36 AC 155 ms
451,072 KB
testcase_37 AC 151 ms
451,072 KB
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A2 = A*10000
B2 = B*10000
ans = 10**18
for i in range(min(N*10000,M*10000)):
    if A2[i] == B2[i]:
        ans = i+1
        break
if ans == 10**18:
    print(-1)
else:
    print(ans)
0