結果

問題 No.2904 Distinct Multisets in a Way
ユーザー 👑 amentorimaruamentorimaru
提出日時 2024-06-17 01:08:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,298 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 49,664 KB
最終ジャッジ日時 2024-09-27 01:03:09
合計ジャッジ時間 17,008 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 1,291 ms
49,664 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 1,291 ms
49,664 KB
testcase_04 AC 32 ms
10,496 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 32 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 31 ms
10,496 KB
testcase_11 AC 32 ms
10,624 KB
testcase_12 AC 33 ms
10,496 KB
testcase_13 AC 30 ms
10,368 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 32 ms
10,368 KB
testcase_17 AC 33 ms
10,496 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 33 ms
10,752 KB
testcase_23 AC 31 ms
10,624 KB
testcase_24 AC 628 ms
29,056 KB
testcase_25 AC 1,298 ms
49,664 KB
testcase_26 AC 112 ms
13,184 KB
testcase_27 AC 389 ms
21,760 KB
testcase_28 AC 1,097 ms
43,648 KB
testcase_29 AC 361 ms
20,736 KB
testcase_30 AC 590 ms
28,160 KB
testcase_31 AC 1,196 ms
47,232 KB
testcase_32 AC 95 ms
12,672 KB
testcase_33 AC 132 ms
13,440 KB
testcase_34 AC 148 ms
14,080 KB
testcase_35 AC 842 ms
35,072 KB
testcase_36 AC 824 ms
35,072 KB
testcase_37 AC 1,283 ms
49,408 KB
testcase_38 AC 57 ms
11,520 KB
testcase_39 AC 885 ms
37,120 KB
testcase_40 AC 431 ms
23,040 KB
testcase_41 AC 525 ms
25,984 KB
testcase_42 AC 764 ms
33,280 KB
testcase_43 AC 51 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
def read_values(): return tuple(map(int, input().split()))
def read_list(): return list(read_values())

def main():      
    mod = 998244353
    n = int(input())
    f = [1] * (n+1)
    rf = [1] * (n+1)
    for i in range(n):
        f[i+1] = f[i]*(i+1)%mod
        rf[i+1] = pow(f[i+1],-1,mod)
    ans = 0
    for s in range(1,n//2+1):
        add = f[n] * rf[n-s*2] * rf[s] * rf[s] * rf[2] % mod
        ans += add
        ans %= mod
    print(ans)

if __name__ == "__main__":
    main()
0