結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー roarisroaris
提出日時 2019-09-18 21:39:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,500 ms
コード長 573 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 77,088 KB
最終ジャッジ日時 2024-07-16 03:17:28
合計ジャッジ時間 1,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,808 KB
testcase_01 AC 39 ms
52,628 KB
testcase_02 AC 37 ms
52,496 KB
testcase_03 AC 39 ms
52,376 KB
testcase_04 AC 36 ms
52,856 KB
testcase_05 AC 42 ms
60,160 KB
testcase_06 AC 47 ms
62,348 KB
testcase_07 AC 61 ms
71,380 KB
testcase_08 AC 62 ms
72,360 KB
testcase_09 AC 34 ms
52,880 KB
testcase_10 AC 34 ms
52,896 KB
testcase_11 AC 86 ms
76,732 KB
testcase_12 AC 81 ms
77,088 KB
testcase_13 AC 35 ms
53,576 KB
testcase_14 AC 32 ms
52,852 KB
testcase_15 AC 35 ms
53,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class fenwick_tree:
    def __init__(self, n):
        self.n = n
        #x, a1, a2, ..., an
        self.arr = [0] * (n+1)
    
    def add(self, i, x): #1_indexed
        while i <= self.n:
            self.arr[i] += x
            i += i & -i
    
    def query(self, i): #a1 + a2 + ... + ai
        res = 0
        while i > 0:
            res += self.arr[i]
            i -= i & -i
        return res

N = int(input())
M = [int(input()) for _ in range(N)]
ft = fenwick_tree(N)
ans = 0

for i in range(N):
    ans += i - ft.query(M[i]-1)
    ft.add(M[i], 1)

print(ans)
0