結果

問題 No.2807 Have Another Go (Easy)
ユーザー chineristACchineristAC
提出日時 2024-07-12 21:58:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 3,000 ms
コード長 1,246 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 90,740 KB
最終ジャッジ日時 2024-07-12 21:58:44
合計ジャッジ時間 7,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
68,212 KB
testcase_01 AC 154 ms
90,136 KB
testcase_02 AC 144 ms
87,452 KB
testcase_03 AC 129 ms
86,312 KB
testcase_04 AC 96 ms
85,208 KB
testcase_05 AC 145 ms
88,224 KB
testcase_06 AC 142 ms
88,580 KB
testcase_07 AC 111 ms
82,964 KB
testcase_08 AC 114 ms
84,516 KB
testcase_09 AC 121 ms
84,892 KB
testcase_10 AC 109 ms
85,704 KB
testcase_11 AC 158 ms
90,540 KB
testcase_12 AC 185 ms
90,344 KB
testcase_13 AC 159 ms
90,348 KB
testcase_14 AC 160 ms
90,740 KB
testcase_15 AC 160 ms
90,344 KB
testcase_16 AC 158 ms
90,624 KB
testcase_17 AC 160 ms
90,312 KB
testcase_18 AC 163 ms
90,284 KB
testcase_19 AC 163 ms
90,344 KB
testcase_20 AC 163 ms
90,620 KB
testcase_21 AC 162 ms
90,432 KB
testcase_22 AC 157 ms
90,376 KB
testcase_23 AC 212 ms
90,272 KB
testcase_24 AC 158 ms
90,388 KB
testcase_25 AC 162 ms
90,612 KB
testcase_26 AC 161 ms
90,312 KB
testcase_27 AC 184 ms
90,624 KB
testcase_28 AC 159 ms
90,516 KB
testcase_29 AC 162 ms
90,268 KB
testcase_30 AC 162 ms
90,384 KB
testcase_31 AC 66 ms
71,392 KB
testcase_32 AC 71 ms
72,744 KB
testcase_33 AC 77 ms
73,656 KB
testcase_34 AC 73 ms
71,984 KB
testcase_35 AC 69 ms
70,644 KB
testcase_36 AC 85 ms
82,480 KB
testcase_37 AC 92 ms
73,588 KB
testcase_38 AC 100 ms
82,572 KB
testcase_39 AC 72 ms
73,176 KB
testcase_40 AC 102 ms
82,680 KB
testcase_41 AC 103 ms
82,868 KB
testcase_42 AC 103 ms
82,816 KB
testcase_43 AC 100 ms
82,616 KB
testcase_44 AC 99 ms
82,808 KB
testcase_45 AC 99 ms
82,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import *
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

def cmb(n, r, mod):
    if ( r<0 or r>n ):
        return 0
    return (g1[n] * g2[r] % mod) * g2[n-r] % mod


mod = 998244353
N = 2*10**5
g1 = [1]*(N+1)
g2 = [1]*(N+1)
inverse = [1]*(N+1)

for i in range( 2, N + 1 ):
    g1[i]=( ( g1[i-1] * i ) % mod )
    inverse[i]=( ( -inverse[mod % i] * (mod//i) ) % mod )
    g2[i]=( (g2[i-1] * inverse[i]) % mod )
inverse[0]=0

def solve_easy(N,M,K,C):
    dp = [0] * (2*N+100)
    dp[0] = 1
    for i in range(1,2*N+100):
        for k in range(1,6+1):
            dp[i] += dp[i-k] % mod
            dp[i] %= mod
    
    def calc(t):
        res = 0
        for i in range(1,6+1):
            for j in range(i,6+1):
                if 2*N-i >= t:
                    res += dp[2*N-i-t] 
                    res %= mod
        return res

    
    res = []
    for c in C:
        ans = dp[c] * calc(c) + dp[c+N] * calc(c+N) - dp[c] * dp[N] * calc(c+N)
        ans %= mod
        res.append(ans)
    return res

N,M,K = mi()
C = li()
print(*solve_easy(N,M,K,C),sep="\n")
0