結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 36 ms
52,480 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 37 ms
52,480 KB
testcase_10 AC 41 ms
58,880 KB
testcase_11 AC 42 ms
59,520 KB
testcase_12 AC 46 ms
61,952 KB
testcase_13 AC 57 ms
68,608 KB
testcase_14 AC 56 ms
71,680 KB
testcase_15 AC 64 ms
76,928 KB
testcase_16 AC 71 ms
77,312 KB
testcase_17 AC 76 ms
78,980 KB
testcase_18 AC 87 ms
81,792 KB
testcase_19 AC 113 ms
88,832 KB
testcase_20 AC 115 ms
88,832 KB
testcase_21 AC 181 ms
103,552 KB
testcase_22 AC 245 ms
112,512 KB
testcase_23 AC 259 ms
112,768 KB
testcase_24 AC 185 ms
112,768 KB
testcase_25 AC 180 ms
112,512 KB
testcase_26 AC 249 ms
112,896 KB
testcase_27 AC 256 ms
112,896 KB
testcase_28 AC 243 ms
112,512 KB
testcase_29 AC 245 ms
112,888 KB
testcase_30 AC 254 ms
112,896 KB
testcase_31 AC 253 ms
112,768 KB
testcase_32 AC 266 ms
113,152 KB
testcase_33 AC 251 ms
112,880 KB
testcase_34 AC 265 ms
113,024 KB
testcase_35 AC 262 ms
112,512 KB
testcase_36 AC 272 ms
112,768 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)
print(ans%mod)
0