結果

問題 No.2759 Take Pictures, Elements?
ユーザー CecilCecil
提出日時 2024-05-17 22:05:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 290 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 62,220 KB
最終ジャッジ日時 2024-05-17 22:05:59
合計ジャッジ時間 2,538 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 43 ms
54,732 KB
testcase_03 AC 42 ms
55,608 KB
testcase_04 AC 50 ms
54,572 KB
testcase_05 AC 47 ms
55,392 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 51 ms
60,288 KB
testcase_10 AC 50 ms
60,748 KB
testcase_11 AC 47 ms
61,832 KB
testcase_12 AC 49 ms
61,180 KB
testcase_13 AC 47 ms
61,164 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 42 ms
54,656 KB
testcase_22 AC 42 ms
53,792 KB
testcase_23 AC 43 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd

N,Q = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
idx = dd(int)
for i in range(N):
    idx[A[i]] = i
ans = abs(idx[B[0]]-0)
for i in range(Q-1):
    ans += abs(idx[B[i]]-idx[B[i+1]])
print(ans)
0