結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー paruf4paruf4
提出日時 2020-07-18 10:30:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 920 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 109,256 KB
最終ジャッジ日時 2024-05-07 23:37:15
合計ジャッジ時間 9,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
76,988 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 429 ms
107,904 KB
testcase_04 AC 529 ms
103,000 KB
testcase_05 AC 426 ms
109,256 KB
testcase_06 AC 376 ms
108,892 KB
testcase_07 AC 525 ms
103,176 KB
testcase_08 AC 55 ms
72,976 KB
testcase_09 AC 342 ms
100,608 KB
testcase_10 AC 920 ms
103,312 KB
testcase_11 AC 33 ms
52,376 KB
testcase_12 AC 540 ms
103,068 KB
testcase_13 AC 545 ms
102,992 KB
testcase_14 AC 539 ms
103,268 KB
testcase_15 AC 34 ms
53,072 KB
testcase_16 AC 36 ms
52,816 KB
testcase_17 AC 34 ms
52,876 KB
testcase_18 AC 33 ms
52,460 KB
testcase_19 AC 33 ms
52,964 KB
testcase_20 AC 33 ms
52,468 KB
testcase_21 AC 32 ms
52,956 KB
testcase_22 AC 34 ms
52,824 KB
testcase_23 AC 67 ms
76,648 KB
testcase_24 AC 144 ms
86,528 KB
testcase_25 AC 340 ms
108,616 KB
testcase_26 AC 83 ms
79,352 KB
testcase_27 AC 186 ms
92,032 KB
testcase_28 AC 269 ms
100,888 KB
testcase_29 AC 388 ms
108,944 KB
testcase_30 AC 485 ms
103,172 KB
testcase_31 AC 109 ms
81,888 KB
testcase_32 AC 83 ms
78,208 KB
testcase_33 AC 121 ms
108,288 KB
testcase_34 AC 38 ms
53,200 KB
testcase_35 AC 37 ms
52,076 KB
testcase_36 AC 34 ms
52,116 KB
testcase_37 AC 35 ms
53,976 KB
testcase_38 AC 35 ms
53,520 KB
testcase_39 AC 37 ms
52,516 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