結果

問題 No.1621 Sequence Inversions
ユーザー convexineqconvexineq
提出日時 2023-07-09 17:28:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 3,000 ms
コード長 336 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 62,396 KB
最終ジャッジ日時 2024-07-23 14:43:04
合計ジャッジ時間 2,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,760 KB
testcase_01 AC 37 ms
52,756 KB
testcase_02 AC 42 ms
59,948 KB
testcase_03 AC 42 ms
58,904 KB
testcase_04 AC 47 ms
60,520 KB
testcase_05 AC 37 ms
52,348 KB
testcase_06 AC 42 ms
59,036 KB
testcase_07 AC 44 ms
60,772 KB
testcase_08 AC 47 ms
61,788 KB
testcase_09 AC 48 ms
61,032 KB
testcase_10 AC 50 ms
60,856 KB
testcase_11 AC 47 ms
61,040 KB
testcase_12 AC 50 ms
60,972 KB
testcase_13 AC 51 ms
60,580 KB
testcase_14 AC 45 ms
60,460 KB
testcase_15 AC 43 ms
60,652 KB
testcase_16 AC 48 ms
62,396 KB
testcase_17 AC 49 ms
61,888 KB
testcase_18 AC 46 ms
61,032 KB
testcase_19 AC 43 ms
59,556 KB
testcase_20 AC 47 ms
61,104 KB
testcase_21 AC 50 ms
61,236 KB
testcase_22 AC 43 ms
59,952 KB
testcase_23 AC 51 ms
62,172 KB
testcase_24 AC 37 ms
52,408 KB
testcase_25 AC 37 ms
52,592 KB
testcase_26 AC 36 ms
53,036 KB
testcase_27 AC 36 ms
53,360 KB
testcase_28 AC 36 ms
52,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
MOD = 998244353
n,K,*a = map(int,open(0).read().split())
r = [1]+[0]*K
for c in range(1,n+1):
    for i in range(K+1-c)[::-1]:
        r[i+c] = (r[i+c]-r[i])%MOD
for k,v in itertools.groupby(sorted(a)):
    for c in range(1,len([*v])+1):
        for i in range(K+1-c):
            r[i+c] = (r[i+c]+r[i])%MOD
print(r[K])
0