結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー otsunekootsuneko
提出日時 2021-06-11 21:53:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 296 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 139,008 KB
最終ジャッジ日時 2024-05-08 17:33:43
合計ジャッジ時間 5,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 33 ms
51,712 KB
testcase_03 AC 70 ms
106,368 KB
testcase_04 AC 80 ms
119,040 KB
testcase_05 AC 73 ms
110,336 KB
testcase_06 AC 77 ms
115,200 KB
testcase_07 AC 76 ms
112,640 KB
testcase_08 AC 73 ms
107,776 KB
testcase_09 AC 65 ms
98,176 KB
testcase_10 AC 78 ms
114,816 KB
testcase_11 AC 69 ms
102,912 KB
testcase_12 AC 64 ms
97,720 KB
testcase_13 AC 59 ms
91,136 KB
testcase_14 AC 89 ms
123,008 KB
testcase_15 AC 85 ms
127,104 KB
testcase_16 AC 66 ms
98,688 KB
testcase_17 AC 58 ms
87,552 KB
testcase_18 AC 56 ms
77,184 KB
testcase_19 AC 55 ms
77,952 KB
testcase_20 AC 87 ms
121,216 KB
testcase_21 AC 62 ms
92,160 KB
testcase_22 AC 59 ms
82,432 KB
testcase_23 AC 94 ms
138,624 KB
testcase_24 AC 95 ms
139,008 KB
testcase_25 AC 93 ms
139,008 KB
testcase_26 AC 93 ms
138,368 KB
testcase_27 AC 95 ms
138,860 KB
testcase_28 AC 94 ms
138,604 KB
testcase_29 AC 97 ms
138,880 KB
testcase_30 AC 94 ms
138,752 KB
testcase_31 AC 94 ms
138,368 KB
testcase_32 AC 95 ms
138,752 KB
testcase_33 AC 114 ms
138,752 KB
testcase_34 AC 36 ms
51,584 KB
testcase_35 AC 36 ms
52,224 KB
testcase_36 WA -
testcase_37 AC 66 ms
98,048 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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