結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー marroncastlemarroncastle
提出日時 2020-07-17 21:43:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 873 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 110,024 KB
最終ジャッジ日時 2024-05-07 07:48:03
合計ジャッジ時間 10,676 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
76,160 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 466 ms
108,968 KB
testcase_04 AC 537 ms
102,736 KB
testcase_05 AC 416 ms
110,024 KB
testcase_06 AC 371 ms
108,416 KB
testcase_07 AC 514 ms
102,912 KB
testcase_08 AC 58 ms
72,576 KB
testcase_09 AC 344 ms
100,736 KB
testcase_10 AC 873 ms
102,912 KB
testcase_11 AC 38 ms
51,968 KB
testcase_12 AC 535 ms
102,656 KB
testcase_13 AC 534 ms
102,784 KB
testcase_14 AC 551 ms
103,168 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 37 ms
51,968 KB
testcase_18 AC 38 ms
51,712 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 37 ms
51,968 KB
testcase_22 AC 36 ms
52,096 KB
testcase_23 AC 75 ms
76,288 KB
testcase_24 AC 148 ms
86,784 KB
testcase_25 AC 351 ms
108,160 KB
testcase_26 AC 91 ms
78,976 KB
testcase_27 AC 182 ms
91,776 KB
testcase_28 AC 259 ms
100,672 KB
testcase_29 AC 384 ms
108,672 KB
testcase_30 AC 505 ms
103,424 KB
testcase_31 AC 108 ms
81,280 KB
testcase_32 AC 89 ms
78,460 KB
testcase_33 AC 128 ms
108,884 KB
testcase_34 AC 38 ms
52,608 KB
testcase_35 AC 36 ms
52,096 KB
testcase_36 AC 37 ms
51,712 KB
testcase_37 AC 36 ms
52,096 KB
testcase_38 AC 37 ms
52,480 KB
testcase_39 AC 37 ms
52,096 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