結果

問題 No.2807 Have Another Go (Easy)
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-07-05 11:26:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 3,000 ms
コード長 380 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-07-06 14:19:21
合計ジャッジ時間 5,574 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 107 ms
84,408 KB
testcase_02 AC 107 ms
82,560 KB
testcase_03 AC 93 ms
80,444 KB
testcase_04 AC 59 ms
79,232 KB
testcase_05 AC 110 ms
83,188 KB
testcase_06 AC 109 ms
82,816 KB
testcase_07 AC 80 ms
77,688 KB
testcase_08 AC 79 ms
80,568 KB
testcase_09 AC 87 ms
79,360 KB
testcase_10 AC 69 ms
80,000 KB
testcase_11 AC 119 ms
84,352 KB
testcase_12 AC 118 ms
84,336 KB
testcase_13 AC 119 ms
84,352 KB
testcase_14 AC 119 ms
84,480 KB
testcase_15 AC 120 ms
84,716 KB
testcase_16 AC 117 ms
84,588 KB
testcase_17 AC 121 ms
84,736 KB
testcase_18 AC 119 ms
84,416 KB
testcase_19 AC 122 ms
84,808 KB
testcase_20 AC 118 ms
84,404 KB
testcase_21 AC 117 ms
84,608 KB
testcase_22 AC 116 ms
84,276 KB
testcase_23 AC 121 ms
84,724 KB
testcase_24 AC 118 ms
84,352 KB
testcase_25 AC 118 ms
84,480 KB
testcase_26 AC 118 ms
84,352 KB
testcase_27 AC 119 ms
84,816 KB
testcase_28 AC 118 ms
84,992 KB
testcase_29 AC 119 ms
84,608 KB
testcase_30 AC 118 ms
84,608 KB
testcase_31 AC 39 ms
59,520 KB
testcase_32 AC 37 ms
59,520 KB
testcase_33 AC 40 ms
60,416 KB
testcase_34 AC 38 ms
59,264 KB
testcase_35 AC 36 ms
60,416 KB
testcase_36 AC 49 ms
65,280 KB
testcase_37 AC 40 ms
59,776 KB
testcase_38 AC 62 ms
76,260 KB
testcase_39 AC 40 ms
59,136 KB
testcase_40 AC 61 ms
76,160 KB
testcase_41 AC 62 ms
76,288 KB
testcase_42 AC 62 ms
76,160 KB
testcase_43 AC 60 ms
73,984 KB
testcase_44 AC 58 ms
74,624 KB
testcase_45 AC 57 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gt(n):
    ret=0
    for i in range(1,7):
        if n-i>=0:
            ret+=dp[n-i]*(7-i)
    return ret
MOD=998244353
N,M,k=map(int,input().split())
C=list(map(int,input().split()))
dp=[0]*(N*2+20)
dp[0]=1
for i in range(N*2+10):
    dp[i]%=MOD
    for j in range(1,7):
        dp[i+j]+=dp[i]
for c in C:
    print((dp[c]*gt(N*2-c)+dp[N+c]*gt(N-c)-dp[c]*dp[N]*gt(N-c))%MOD)
0