結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 1,426 ms
49,792 KB
testcase_02 RE -
testcase_03 AC 1,430 ms
49,792 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 32 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 32 ms
10,496 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 32 ms
10,496 KB
testcase_17 AC 33 ms
10,752 KB
testcase_18 AC 32 ms
10,624 KB
testcase_19 AC 32 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 32 ms
10,624 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,496 KB
testcase_24 AC 676 ms
29,436 KB
testcase_25 AC 1,429 ms
49,664 KB
testcase_26 AC 111 ms
13,312 KB
testcase_27 AC 403 ms
21,888 KB
testcase_28 AC 1,206 ms
43,776 KB
testcase_29 AC 383 ms
21,116 KB
testcase_30 AC 633 ms
28,160 KB
testcase_31 AC 1,338 ms
47,104 KB
testcase_32 AC 93 ms
12,544 KB
testcase_33 AC 129 ms
13,952 KB
testcase_34 AC 147 ms
14,464 KB
testcase_35 AC 892 ms
35,584 KB
testcase_36 AC 900 ms
35,200 KB
testcase_37 AC 1,422 ms
49,664 KB
testcase_38 AC 56 ms
11,648 KB
testcase_39 AC 969 ms
37,248 KB
testcase_40 AC 450 ms
23,168 KB
testcase_41 AC 585 ms
26,112 KB
testcase_42 AC 816 ms
33,664 KB
testcase_43 AC 49 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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