結果

問題 No.2759 Take Pictures, Elements?
ユーザー hitonanodehitonanode
提出日時 2024-05-17 22:43:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 215 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 54,812 KB
最終ジャッジ日時 2024-05-17 22:43:17
合計ジャッジ時間 2,249 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 35 ms
54,076 KB
testcase_03 AC 37 ms
53,264 KB
testcase_04 AC 33 ms
53,668 KB
testcase_05 AC 33 ms
53,272 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 39 ms
54,184 KB
testcase_10 AC 35 ms
54,812 KB
testcase_11 AC 36 ms
54,376 KB
testcase_12 AC 36 ms
54,320 KB
testcase_13 AC 39 ms
53,972 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 34 ms
52,368 KB
testcase_22 AC 34 ms
52,820 KB
testcase_23 AC 33 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())

A = list(map(int, input().split()))

d = {a: i for i, a in enumerate(A)}

ret = 0
cur = 0

for b in map(int, input().split()):
    ret += abs(cur - d[b])
    cur = d[b]

print(ret)
0