結果

問題 No.2904 Distinct Multisets in a Way
ユーザー ニックネームニックネーム
提出日時 2024-09-27 22:31:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 205 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,176 KB
最終ジャッジ日時 2024-09-27 22:31:40
合計ジャッジ時間 16,913 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 1,424 ms
50,176 KB
testcase_02 RE -
testcase_03 AC 1,397 ms
50,048 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 28 ms
10,880 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 31 ms
10,752 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 29 ms
10,752 KB
testcase_17 AC 28 ms
10,752 KB
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 30 ms
10,880 KB
testcase_24 AC 677 ms
29,564 KB
testcase_25 AC 1,385 ms
49,792 KB
testcase_26 AC 107 ms
13,440 KB
testcase_27 AC 405 ms
22,012 KB
testcase_28 AC 1,140 ms
44,032 KB
testcase_29 AC 368 ms
21,116 KB
testcase_30 AC 610 ms
28,284 KB
testcase_31 AC 1,274 ms
47,356 KB
testcase_32 AC 93 ms
12,800 KB
testcase_33 AC 126 ms
13,820 KB
testcase_34 AC 146 ms
14,336 KB
testcase_35 AC 857 ms
35,580 KB
testcase_36 AC 851 ms
35,456 KB
testcase_37 AC 1,343 ms
49,660 KB
testcase_38 AC 52 ms
11,648 KB
testcase_39 AC 924 ms
37,500 KB
testcase_40 AC 444 ms
23,420 KB
testcase_41 AC 559 ms
26,240 KB
testcase_42 AC 799 ms
33,788 KB
testcase_43 AC 47 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = int(input()),998244353
if n==0: 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