結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 1,246 ms
50,044 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 1,263 ms
50,044 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 25 ms
10,880 KB
testcase_11 AC 26 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 25 ms
10,880 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 28 ms
10,752 KB
testcase_22 AC 34 ms
10,880 KB
testcase_23 AC 26 ms
10,880 KB
testcase_24 AC 591 ms
29,440 KB
testcase_25 AC 1,306 ms
50,048 KB
testcase_26 AC 99 ms
13,440 KB
testcase_27 AC 377 ms
21,884 KB
testcase_28 AC 1,039 ms
43,904 KB
testcase_29 AC 350 ms
21,116 KB
testcase_30 AC 563 ms
28,284 KB
testcase_31 AC 1,195 ms
47,484 KB
testcase_32 AC 81 ms
12,800 KB
testcase_33 AC 111 ms
13,824 KB
testcase_34 AC 134 ms
14,332 KB
testcase_35 AC 808 ms
35,584 KB
testcase_36 AC 827 ms
35,452 KB
testcase_37 AC 1,264 ms
49,660 KB
testcase_38 AC 47 ms
11,520 KB
testcase_39 AC 819 ms
37,372 KB
testcase_40 AC 414 ms
23,296 KB
testcase_41 AC 484 ms
26,240 KB
testcase_42 AC 775 ms
33,788 KB
testcase_43 AC 44 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,z = int(input()),998244353
if n==0: exit(print(0))
# a: https://oeis.org/A002426
# b: https://oeis.org/A027914
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