結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー ああいいああいい
提出日時 2022-02-23 13:56:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 399 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 111,652 KB
最終ジャッジ日時 2024-07-01 13:41:12
合計ジャッジ時間 5,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
76,320 KB
testcase_01 AC 37 ms
53,508 KB
testcase_02 AC 37 ms
53,344 KB
testcase_03 AC 145 ms
109,924 KB
testcase_04 AC 155 ms
102,704 KB
testcase_05 AC 144 ms
111,652 KB
testcase_06 AC 139 ms
109,440 KB
testcase_07 AC 156 ms
102,808 KB
testcase_08 AC 54 ms
72,548 KB
testcase_09 AC 101 ms
101,304 KB
testcase_10 AC 124 ms
102,808 KB
testcase_11 AC 37 ms
52,256 KB
testcase_12 AC 161 ms
103,244 KB
testcase_13 AC 156 ms
103,576 KB
testcase_14 AC 156 ms
103,212 KB
testcase_15 AC 38 ms
53,196 KB
testcase_16 AC 38 ms
52,404 KB
testcase_17 AC 38 ms
53,292 KB
testcase_18 AC 38 ms
52,740 KB
testcase_19 AC 38 ms
52,816 KB
testcase_20 AC 38 ms
53,104 KB
testcase_21 AC 38 ms
52,332 KB
testcase_22 AC 38 ms
52,332 KB
testcase_23 AC 60 ms
76,820 KB
testcase_24 AC 84 ms
87,164 KB
testcase_25 AC 130 ms
109,156 KB
testcase_26 AC 68 ms
79,884 KB
testcase_27 AC 97 ms
92,252 KB
testcase_28 AC 120 ms
101,480 KB
testcase_29 AC 139 ms
109,388 KB
testcase_30 AC 153 ms
103,916 KB
testcase_31 AC 74 ms
81,824 KB
testcase_32 AC 68 ms
78,412 KB
testcase_33 AC 123 ms
110,584 KB
testcase_34 AC 37 ms
52,408 KB
testcase_35 AC 37 ms
53,348 KB
testcase_36 AC 38 ms
52,616 KB
testcase_37 AC 38 ms
52,632 KB
testcase_38 AC 37 ms
52,376 KB
testcase_39 AC 38 ms
53,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
D = {v:i for i,v in enumerate(b)}
bit = [0] * (n+1)
def update(i,x):
    while i <= n:
        bit[i] += x
        i += i & -i
def fold(i):
    ans = 0
    while i > 0:
        ans += bit[i]
        i -= i & -i
    return ans
ans = 0
for x in reversed(a):
    ans += fold(D[x]+1)
    update(D[x]+1,1)
print(ans)
0