結果

問題 No.2807 Have Another Go (Easy)
ユーザー detteiuudetteiuu
提出日時 2024-07-12 22:11:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 671 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,296 KB
最終ジャッジ日時 2024-07-12 22:11:42
合計ジャッジ時間 7,376 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,636 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 51 ms
63,580 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 48 ms
61,732 KB
testcase_37 AC 42 ms
53,744 KB
testcase_38 AC 59 ms
66,240 KB
testcase_39 AC 39 ms
52,584 KB
testcase_40 AC 54 ms
65,368 KB
testcase_41 AC 53 ms
66,568 KB
testcase_42 AC 54 ms
64,940 KB
testcase_43 AC 53 ms
65,972 KB
testcase_44 AC 53 ms
65,316 KB
testcase_45 AC 53 ms
64,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
C = list(map(int, input().split()))

MOD = 998244353
dp0 = [0]*(N+1)
dp0[0] = 1
for i in range(N):
    for j in range(1, 7):
        if i+j <= N:
            dp0[i+j] += dp0[i]
            dp0[i+j] %= MOD
cntN = dp0[-1]

dp = [0]*(N*M+1)
dp[0] = 1
dp2 = [0]*(N*M+1)
for i in range(N*M):
    for j in range(1, 7):
        dp[min(i+j, N*M)] += dp[i]
        dp[min(i+j, N*M)] %= MOD
        dp2[min(i+j, N*M)] += dp[i]*(7-j)
        dp2[min(i+j, N*M)] %= MOD
dp2 = dp2[::-1]

for i in range(K):
    top = dp[C[i]]*dp2[C[i]]%MOD
    bottom = dp[C[i]+N]*dp2[C[i]+N]%MOD
    minus = cntN*dp[C[i]]*dp2[C[i]+N]%MOD
    print(top+bottom-minus)
0