結果

問題 No.2136 Dice Calendar?
ユーザー googol_S0googol_S0
提出日時 2022-11-25 21:30:15
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 835 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 607,168 KB
最終ジャッジ日時 2024-10-02 04:03:29
合計ジャッジ時間 26,319 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
66,432 KB
testcase_01 AC 61 ms
66,176 KB
testcase_02 AC 78 ms
78,208 KB
testcase_03 AC 59 ms
66,432 KB
testcase_04 AC 59 ms
66,432 KB
testcase_05 AC 67 ms
70,144 KB
testcase_06 AC 67 ms
70,400 KB
testcase_07 AC 67 ms
70,400 KB
testcase_08 AC 69 ms
71,680 KB
testcase_09 AC 73 ms
75,264 KB
testcase_10 AC 80 ms
78,592 KB
testcase_11 AC 124 ms
100,224 KB
testcase_12 AC 151 ms
109,704 KB
testcase_13 AC 115 ms
98,176 KB
testcase_14 AC 177 ms
115,456 KB
testcase_15 AC 588 ms
194,996 KB
testcase_16 AC 828 ms
217,000 KB
testcase_17 AC 525 ms
180,912 KB
testcase_18 AC 1,897 ms
294,868 KB
testcase_19 AC 2,432 ms
310,228 KB
testcase_20 AC 3,140 ms
363,152 KB
testcase_21 AC 3,537 ms
418,188 KB
testcase_22 MLE -
testcase_23 MLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
def cmb(n,r):
  if r<0 or r>n:
    return 0
  return ((g1[n]*g2[r]%mod)*g2[n-r])%mod

N=300000
g1=[1]*(N+3)
for i in range(2,N+3):
  g1[i]=g1[i-1]*i%mod
g2=[0]*len(g1)
g2[-1]=pow(g1[-1],mod-2,mod)
for i in range(N+1,-1,-1):
  g2[i]=g2[i+1]*(i+1)%mod
inv=[0]*(N+3)
for i in range(1,N+3):
  inv[i]=g2[i]*g1[i-1]%mod

#X=[set() for i in range(21)]
P=[21**i for i in range(10)]
#X[0]=set([0])
#for i in range(20):
#  for j in X[i]:
#    for k in range(1,10):
#      X[i+1].add(j+P[k])
N=int(input())
S=[list(map(int,input().split())) for i in range(N)]
X=[set() for i in range(N+1)]
X[0]=set([0])
for i in range(N):
  for j in X[i]:
    for k in range(6):
      X[i+1].add(j+P[S[i][k]])
ANS=0
for x in X[N]:
  V=1
  S=0
  while x:
    p=x//21
    q=x-p*21
    S+=q
    V=V*g2[q]%mod
    x=p
  ANS=(ANS+g1[S]*V)%mod
print(ANS)
0