結果

問題 No.2807 Have Another Go (Easy)
ユーザー titiatitia
提出日時 2024-07-16 04:09:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 3,000 ms
コード長 627 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 84,504 KB
最終ジャッジ日時 2024-07-16 04:09:29
合計ジャッジ時間 6,953 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 123 ms
83,328 KB
testcase_02 AC 112 ms
81,152 KB
testcase_03 AC 102 ms
80,128 KB
testcase_04 AC 70 ms
78,464 KB
testcase_05 AC 118 ms
81,792 KB
testcase_06 AC 144 ms
81,792 KB
testcase_07 AC 84 ms
76,928 KB
testcase_08 AC 95 ms
81,408 KB
testcase_09 AC 95 ms
78,772 KB
testcase_10 AC 86 ms
79,488 KB
testcase_11 AC 124 ms
84,224 KB
testcase_12 AC 127 ms
84,200 KB
testcase_13 AC 126 ms
83,968 KB
testcase_14 AC 125 ms
83,840 KB
testcase_15 AC 153 ms
84,480 KB
testcase_16 AC 126 ms
84,224 KB
testcase_17 AC 126 ms
83,840 KB
testcase_18 AC 128 ms
84,224 KB
testcase_19 AC 127 ms
84,352 KB
testcase_20 AC 129 ms
84,480 KB
testcase_21 AC 127 ms
84,504 KB
testcase_22 AC 155 ms
83,968 KB
testcase_23 AC 160 ms
83,968 KB
testcase_24 AC 127 ms
84,324 KB
testcase_25 AC 129 ms
84,240 KB
testcase_26 AC 123 ms
84,224 KB
testcase_27 AC 129 ms
83,968 KB
testcase_28 AC 125 ms
84,096 KB
testcase_29 AC 129 ms
84,224 KB
testcase_30 AC 126 ms
83,840 KB
testcase_31 AC 46 ms
59,264 KB
testcase_32 AC 72 ms
59,520 KB
testcase_33 AC 48 ms
60,288 KB
testcase_34 AC 46 ms
59,520 KB
testcase_35 AC 46 ms
59,648 KB
testcase_36 AC 65 ms
67,200 KB
testcase_37 AC 52 ms
60,544 KB
testcase_38 AC 68 ms
68,480 KB
testcase_39 AC 47 ms
58,624 KB
testcase_40 AC 64 ms
67,840 KB
testcase_41 AC 67 ms
69,120 KB
testcase_42 AC 66 ms
68,864 KB
testcase_43 AC 64 ms
67,456 KB
testcase_44 AC 64 ms
68,096 KB
testcase_45 AC 63 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,k=map(int,input().split())

mod=998244353

DP=[0]*(N*M+8)
DP[0]=1

for i in range(N*M):
    for j in range(1,7):
        DP[i+j]=(DP[i+j]+DP[i])%mod

C=list(map(int,input().split()))

for c in C:
    # cを通る
    ANS=0
    for i in range(1,7):
        ANS+=DP[c]*DP[N*M-i-c]*(6-i+1)

    #print(ANS)

    # c+Nを通る
    for i in range(1,7):
        if c+N<=N*M-i:
            ANS+=DP[c+N]*DP[N*M-i-(c+N)]*(6-i+1)

    #print(ANS)

    # cとc+Nを通る
    for i in range(1,7):
        if c+N<=N*M-i:
            ANS-=DP[c]*DP[N]*DP[N*M-i-(c+N)]*(6-i+1)

    print(ANS%mod)

0