結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー paruf4paruf4
提出日時 2020-07-18 10:29:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,744 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,844 KB
最終ジャッジ日時 2024-05-07 23:35:44
合計ジャッジ時間 16,503 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
12,288 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 848 ms
25,628 KB
testcase_04 AC 1,063 ms
30,844 KB
testcase_05 AC 823 ms
25,708 KB
testcase_06 AC 718 ms
24,608 KB
testcase_07 AC 1,054 ms
30,708 KB
testcase_08 AC 45 ms
11,776 KB
testcase_09 AC 635 ms
22,640 KB
testcase_10 AC 1,744 ms
30,568 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 1,086 ms
30,640 KB
testcase_13 AC 1,081 ms
30,548 KB
testcase_14 AC 1,081 ms
30,500 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 31 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 32 ms
10,880 KB
testcase_23 AC 55 ms
12,288 KB
testcase_24 AC 211 ms
17,556 KB
testcase_25 AC 657 ms
24,320 KB
testcase_26 AC 94 ms
14,196 KB
testcase_27 AC 291 ms
21,152 KB
testcase_28 AC 463 ms
23,060 KB
testcase_29 AC 730 ms
25,372 KB
testcase_30 AC 1,016 ms
30,060 KB
testcase_31 AC 133 ms
15,984 KB
testcase_32 AC 86 ms
13,824 KB
testcase_33 AC 205 ms
25,784 KB
testcase_34 AC 32 ms
10,752 KB
testcase_35 AC 31 ms
10,752 KB
testcase_36 AC 31 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 32 ms
10,752 KB
testcase_39 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right,insort_right
N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
dic = {}
for i in range(N):
  dic[B[i]] = i
for i in range(N):
  A[i] = dic[A[i]]
lis = [A[0]]
ans=0
for i in range(1,N):
  idx = bisect_right(lis,A[i])
  ans += i-idx
  insort_right(lis,A[i])
print(ans)
0