結果

問題 No.2616 中央番目の中央値
ユーザー ニックネームニックネーム
提出日時 2024-01-26 23:53:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 113,024 KB
最終ジャッジ日時 2024-09-28 09:15:02
合計ジャッジ時間 6,881 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 44 ms
58,496 KB
testcase_11 AC 47 ms
59,264 KB
testcase_12 AC 51 ms
61,952 KB
testcase_13 AC 63 ms
68,224 KB
testcase_14 AC 66 ms
71,040 KB
testcase_15 AC 75 ms
76,800 KB
testcase_16 AC 81 ms
77,312 KB
testcase_17 AC 85 ms
79,232 KB
testcase_18 AC 94 ms
81,664 KB
testcase_19 AC 120 ms
88,960 KB
testcase_20 AC 122 ms
88,576 KB
testcase_21 AC 186 ms
103,424 KB
testcase_22 AC 255 ms
112,512 KB
testcase_23 AC 245 ms
112,768 KB
testcase_24 AC 191 ms
112,896 KB
testcase_25 AC 193 ms
112,640 KB
testcase_26 AC 246 ms
112,512 KB
testcase_27 AC 256 ms
112,896 KB
testcase_28 AC 263 ms
112,896 KB
testcase_29 AC 254 ms
112,896 KB
testcase_30 AC 245 ms
112,512 KB
testcase_31 AC 247 ms
112,896 KB
testcase_32 AC 255 ms
113,024 KB
testcase_33 AC 250 ms
112,896 KB
testcase_34 AC 249 ms
112,512 KB
testcase_35 AC 240 ms
112,640 KB
testcase_36 AC 246 ms
112,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self,n):
        self.n = n; self.k = [0]*(n+1)
    def a(self,i,x):
        while i<=self.n: self.k[i] += x; i += i&-i
    def s(self,i):
        t = 0
        while i>0: t += self.k[i]; i -= i&-i
        return t
n = int(input()); mod = 998244353; fa = [1]*(n+1); fi = [1]*(n+1)
for i in range(1,n): fa[i+1] = fa[i]*(i+1)%mod
fi[n] = pow(fa[n],mod-2,mod)
for i in range(n,0,-1): fi[i-1] = fi[i]*i%mod
def cmb(n,r): return fa[n]*fi[n-r]%mod*fi[r]%mod if 0<=r<=n else 0
bit = BIT(n); x = 0; ans = 0
for i,v in enumerate(map(int,input().split())):
    ls = bit.s(v); ll = i-ls; rs = v-1-ls; rl = n-v-ll; bit.a(v,1)
    ans += cmb(ls+rl,ls)*cmb(ll+rs,ll)%mod
print(ans%mod)
0