結果

問題 No.2807 Have Another Go (Easy)
ユーザー mattu34mattu34
提出日時 2024-07-13 01:20:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 3,000 ms
コード長 2,681 bytes
コンパイル時間 622 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 98,276 KB
最終ジャッジ日時 2024-07-13 01:21:09
合計ジャッジ時間 11,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
88,804 KB
testcase_01 AC 210 ms
97,564 KB
testcase_02 AC 196 ms
95,148 KB
testcase_03 AC 191 ms
93,992 KB
testcase_04 AC 165 ms
93,120 KB
testcase_05 AC 228 ms
95,940 KB
testcase_06 AC 202 ms
95,852 KB
testcase_07 AC 170 ms
90,928 KB
testcase_08 AC 183 ms
94,200 KB
testcase_09 AC 188 ms
92,460 KB
testcase_10 AC 176 ms
93,620 KB
testcase_11 AC 240 ms
98,012 KB
testcase_12 AC 216 ms
98,092 KB
testcase_13 AC 216 ms
97,932 KB
testcase_14 AC 218 ms
98,012 KB
testcase_15 AC 215 ms
98,176 KB
testcase_16 AC 237 ms
97,996 KB
testcase_17 AC 220 ms
98,012 KB
testcase_18 AC 215 ms
98,016 KB
testcase_19 AC 214 ms
97,928 KB
testcase_20 AC 214 ms
97,952 KB
testcase_21 AC 213 ms
98,020 KB
testcase_22 AC 245 ms
97,952 KB
testcase_23 AC 211 ms
97,924 KB
testcase_24 AC 209 ms
98,016 KB
testcase_25 AC 210 ms
98,072 KB
testcase_26 AC 218 ms
98,276 KB
testcase_27 AC 231 ms
98,012 KB
testcase_28 AC 208 ms
97,888 KB
testcase_29 AC 208 ms
98,160 KB
testcase_30 AC 210 ms
98,220 KB
testcase_31 AC 140 ms
89,636 KB
testcase_32 AC 141 ms
89,884 KB
testcase_33 AC 140 ms
89,680 KB
testcase_34 AC 158 ms
89,684 KB
testcase_35 AC 140 ms
89,748 KB
testcase_36 AC 159 ms
89,612 KB
testcase_37 AC 145 ms
89,148 KB
testcase_38 AC 161 ms
90,428 KB
testcase_39 AC 141 ms
89,212 KB
testcase_40 AC 160 ms
90,208 KB
testcase_41 AC 180 ms
90,196 KB
testcase_42 AC 160 ms
90,076 KB
testcase_43 AC 158 ms
89,920 KB
testcase_44 AC 159 ms
89,892 KB
testcase_45 AC 159 ms
90,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
from heapq import heapify, heappop, heappush
import bisect
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# import numpy as np

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")

N, M, k = mi()
C = li()
dp = [0] * (N * M + 6)
dp[0] = 1
for i in range(N * M):
    for deme in range(1, 7):
        dp[i + deme] += dp[i]
        dp[i + deme] %= MOD


def calc(now):
    res = 0
    for mae in range(1, 7):
        if N * M - mae - now >= 0:
            res += dp[N * M - mae - now] * (7 - mae)
            res %= MOD
    return res


for c in C:
    ans = dp[c] * calc(c) + dp[c + N] * calc(c + N) - dp[c] * dp[N] * calc(c + N)
    print(ans % MOD)
0