結果

問題 No.2759 Take Pictures, Elements?
ユーザー yansi819yansi819
提出日時 2024-05-28 10:03:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 566 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 75,500 KB
最終ジャッジ日時 2024-05-28 10:03:50
合計ジャッジ時間 2,503 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 32 ms
53,244 KB
testcase_03 AC 32 ms
53,832 KB
testcase_04 AC 33 ms
53,200 KB
testcase_05 AC 35 ms
53,232 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,400 KB
testcase_08 AC 38 ms
53,232 KB
testcase_09 AC 50 ms
74,960 KB
testcase_10 AC 47 ms
74,716 KB
testcase_11 AC 44 ms
74,960 KB
testcase_12 AC 47 ms
75,172 KB
testcase_13 AC 46 ms
75,260 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 33 ms
52,764 KB
testcase_22 AC 33 ms
52,216 KB
testcase_23 AC 34 ms
53,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
now = 1
ans = 0
for b in B:
    index1, index2 = -1, -1
    if b in A[now - 1:]:
        index1 = A[now - 1:].index(b)
    if b in A[0:now]:
        index2 = A[::-1][len(A) - now:].index(b)
    d = 0
    if index1 < 0: 
        d = index2
        now -= d
    elif index2 < 0: 
        d = index1
        now += d
    else: 
        d = min(index1, index2)
        if d == index1:
            now += d
        else:
            now -= d
    ans += d
print(ans)
0