結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 43 ms
54,780 KB
testcase_03 AC 44 ms
54,572 KB
testcase_04 AC 45 ms
55,176 KB
testcase_05 AC 45 ms
54,148 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 50 ms
60,052 KB
testcase_10 AC 49 ms
61,412 KB
testcase_11 AC 51 ms
60,872 KB
testcase_12 AC 49 ms
61,040 KB
testcase_13 AC 50 ms
61,036 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 46 ms
54,800 KB
testcase_22 AC 44 ms
54,720 KB
testcase_23 AC 45 ms
55,476 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