結果

問題 No.2904 Distinct Multisets in a Way
ユーザー ニックネームニックネーム
提出日時 2024-09-27 22:31:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,403 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-09-27 22:31:56
合計ジャッジ時間 17,179 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 1,403 ms
49,916 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 1,380 ms
50,048 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 30 ms
10,624 KB
testcase_24 AC 667 ms
29,308 KB
testcase_25 AC 1,389 ms
49,664 KB
testcase_26 AC 109 ms
13,440 KB
testcase_27 AC 413 ms
21,884 KB
testcase_28 AC 1,204 ms
44,028 KB
testcase_29 AC 364 ms
20,860 KB
testcase_30 AC 614 ms
28,284 KB
testcase_31 AC 1,293 ms
47,356 KB
testcase_32 AC 94 ms
12,672 KB
testcase_33 AC 127 ms
13,824 KB
testcase_34 AC 145 ms
14,332 KB
testcase_35 AC 842 ms
35,456 KB
testcase_36 AC 907 ms
35,580 KB
testcase_37 AC 1,366 ms
49,532 KB
testcase_38 AC 54 ms
11,648 KB
testcase_39 AC 939 ms
37,244 KB
testcase_40 AC 436 ms
23,164 KB
testcase_41 AC 566 ms
26,364 KB
testcase_42 AC 787 ms
33,660 KB
testcase_43 AC 49 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = int(input()),998244353
if n==0: exit(print(0))
a = [1]; b = [1,0]
for i in range(n):
    a.append((3*a[i]-2*b[i+1])%z)
    b.append((i+1)*(2*b[i+1]+3*b[i])%z*pow(i+3,-1,z)%z)
print((a[-2]-1)*pow(2,-1,z)%z)
0