結果
問題 | No.2206 Popcount Sum 2 |
ユーザー | rlangevin |
提出日時 | 2023-02-03 22:56:39 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 749 bytes |
コンパイル時間 | 799 ms |
コンパイル使用メモリ | 82,540 KB |
実行使用メモリ | 105,452 KB |
最終ジャッジ日時 | 2024-07-02 21:01:39 |
合計ジャッジ時間 | 7,051 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 65 ms
84,608 KB |
testcase_01 | AC | 68 ms
80,000 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
import sys readline = sys.stdin.readline n = 202020 mod = 998244353 fact = [1] * (n + 1) inv = [1] * (n + 1) for i in range(1, n): fact[i + 1] = ((i+1) * fact[i]) % mod inv[n] = pow(fact[n], mod - 2, mod) for i in range(n - 1, -1, -1): inv[i] = inv[i + 1] * (i + 1) % mod def comb(n, r): if n < 0 or r < 0 or n - r < 0: return 0 return fact[n] * inv[r] * inv[n - r] % mod A = [] two = 1 for i in range(n): A.append(two) two *= 2 two %= mod Ac = [0] * (n + 1) for i in range(n): Ac[i + 1] = Ac[i] + A[i] T = int(readline()) for _ in range(T): N, M = map(int, readline().split()) ans = 0 for i in range(M + 1): ans += comb(N - 1, i - 1) * Ac[N] ans %= mod print(ans)