結果

問題 No.2788 4-33 Hard
ユーザー PNJPNJ
提出日時 2024-06-14 22:04:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,175 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 81,628 KB
実行使用メモリ 76,728 KB
最終ジャッジ日時 2024-06-14 22:05:01
合計ジャッジ時間 8,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
76,384 KB
testcase_01 AC 60 ms
73,596 KB
testcase_02 AC 89 ms
76,472 KB
testcase_03 AC 132 ms
76,116 KB
testcase_04 AC 80 ms
76,632 KB
testcase_05 AC 107 ms
76,228 KB
testcase_06 AC 91 ms
76,264 KB
testcase_07 AC 64 ms
72,884 KB
testcase_08 AC 82 ms
76,112 KB
testcase_09 AC 85 ms
76,236 KB
testcase_10 AC 97 ms
76,072 KB
testcase_11 AC 116 ms
76,344 KB
testcase_12 AC 116 ms
76,608 KB
testcase_13 AC 116 ms
76,348 KB
testcase_14 AC 137 ms
76,128 KB
testcase_15 AC 117 ms
76,328 KB
testcase_16 AC 113 ms
76,368 KB
testcase_17 AC 113 ms
76,376 KB
testcase_18 AC 117 ms
76,340 KB
testcase_19 AC 119 ms
76,240 KB
testcase_20 AC 114 ms
76,372 KB
testcase_21 AC 119 ms
76,352 KB
testcase_22 AC 121 ms
76,220 KB
testcase_23 AC 115 ms
76,212 KB
testcase_24 AC 127 ms
76,728 KB
testcase_25 AC 119 ms
76,616 KB
testcase_26 AC 115 ms
76,600 KB
testcase_27 AC 117 ms
76,372 KB
testcase_28 AC 118 ms
76,244 KB
testcase_29 AC 122 ms
76,360 KB
testcase_30 AC 131 ms
76,488 KB
testcase_31 AC 109 ms
76,292 KB
testcase_32 AC 109 ms
76,356 KB
testcase_33 AC 133 ms
76,292 KB
testcase_34 AC 110 ms
76,468 KB
testcase_35 AC 115 ms
76,364 KB
testcase_36 AC 113 ms
76,124 KB
testcase_37 AC 110 ms
76,436 KB
testcase_38 AC 111 ms
76,236 KB
testcase_39 AC 111 ms
76,336 KB
testcase_40 AC 110 ms
76,228 KB
testcase_41 AC 110 ms
76,176 KB
testcase_42 AC 116 ms
76,336 KB
testcase_43 AC 128 ms
76,236 KB
testcase_44 AC 105 ms
76,248 KB
testcase_45 AC 105 ms
76,160 KB
testcase_46 AC 100 ms
76,272 KB
testcase_47 AC 100 ms
76,340 KB
testcase_48 AC 99 ms
76,040 KB
testcase_49 AC 98 ms
76,268 KB
testcase_50 AC 99 ms
76,312 KB
testcase_51 AC 101 ms
76,408 KB
testcase_52 AC 107 ms
76,584 KB
testcase_53 AC 128 ms
76,236 KB
testcase_54 AC 101 ms
76,184 KB
testcase_55 AC 97 ms
76,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = 10
mod = 998244353
inv = [1 for j in range(n+1)]
for a in range(2,n+1):
  # ax + py = 1 <=> rx + p(-x-qy) = -q => x = -(inv[r]) * (p//a)  (r = p % a)
  res = (mod - inv[mod%a]) * (mod // a)
  inv[a] = res % mod

def binom(n,r):
  res = 1
  for i in range(1,r+1):
    res = res *  (n + 1 - i) % mod
    res = res * inv[i] % mod
  return res

O = [list(map(int,input().split())) for i in range(5)]
X = [list(map(int,input().split())) for i in range(5)]

dp = [[[0 for _ in range(34)] for _ in range(5)] for _ in range(9)]
dp[0][0][0] = 1

for a in range(5):
  for b in range(34):
    c = O[a][b]
    for n in range(7,-1,-1):
      for x in range(5):
        for y in range(34):
          for m in range(1,min(c,8) + 1):
            if n + m > 8:
              break
            xx,yy = x + m*a,y + m*b
            if xx > 4:
              break
            if yy > 33:
              break
            cc = binom(c % mod,m)
            dp[n+m][xx][yy] = (dp[n+m][xx][yy] + dp[n][x][y] * cc % mod) % mod

ans = 0
for x in range(5):
  for y in range(34):
    X[x][y] %= mod
    a,b = 4 - x,33 - y
    if y == 0:
      ans = (ans + dp[8][a][b] * X[x][y] % mod) % mod
print(ans)
0