結果

問題 No.696 square1001 and Permutation 5
ユーザー dangodango
提出日時 2023-06-13 19:26:32
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 393 bytes
コンパイル時間 1,152 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 276,112 KB
最終ジャッジ日時 2024-06-22 05:15:31
合計ジャッジ時間 31,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 34 ms
52,472 KB
testcase_02 AC 33 ms
53,108 KB
testcase_03 AC 37 ms
60,740 KB
testcase_04 AC 38 ms
63,012 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 3,197 ms
260,296 KB
testcase_12 AC 33 ms
52,336 KB
testcase_13 AC 35 ms
53,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int,input().split()))
BIT = [0 for i in range(N + 1)]
def SUM(X):
    R = 0
    while X > 0:
        R += BIT[X]
        X -= (X & -X)
    return R
def ADD(X, Y):
    if(X == 0):
        return
    while X <= N:
        BIT[X] += Y
        X = X + (X & -X)
R = 1
X = 1
for i in range(1, N + 1):
    R += SUM(P[N - i]) * X
    ADD(P[N - i], 1)
    X *= i
print(R)
0