結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー marroncastlemarroncastle
提出日時 2020-07-17 21:42:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,673 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,724 KB
最終ジャッジ日時 2024-05-07 07:46:53
合計ジャッジ時間 15,180 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
12,288 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 783 ms
25,612 KB
testcase_04 AC 986 ms
30,724 KB
testcase_05 AC 765 ms
25,444 KB
testcase_06 AC 657 ms
25,132 KB
testcase_07 AC 978 ms
30,720 KB
testcase_08 AC 41 ms
11,648 KB
testcase_09 AC 599 ms
22,592 KB
testcase_10 AC 1,673 ms
30,528 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 1,020 ms
30,492 KB
testcase_13 AC 1,012 ms
30,372 KB
testcase_14 AC 1,012 ms
30,436 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 31 ms
10,880 KB
testcase_22 AC 30 ms
10,752 KB
testcase_23 AC 49 ms
12,416 KB
testcase_24 AC 190 ms
17,492 KB
testcase_25 AC 606 ms
24,396 KB
testcase_26 AC 83 ms
14,080 KB
testcase_27 AC 258 ms
21,364 KB
testcase_28 AC 422 ms
22,824 KB
testcase_29 AC 670 ms
25,352 KB
testcase_30 AC 914 ms
30,564 KB
testcase_31 AC 116 ms
16,084 KB
testcase_32 AC 75 ms
13,692 KB
testcase_33 AC 155 ms
25,564 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,880 KB
testcase_36 AC 31 ms
10,752 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 31 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *
def solve():
  ans = 0
  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]]
  for i in range(1,N):
    ind = bisect_right(lis,A[i])
    ans += i-ind
    insort_right(lis,A[i])
  return ans
print(solve())
0