結果

問題 No.2136 Dice Calendar?
ユーザー とりゐとりゐ
提出日時 2022-12-03 20:49:54
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 478 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 389,192 KB
最終ジャッジ日時 2024-10-11 00:22:59
合計ジャッジ時間 26,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 68 ms
69,376 KB
testcase_03 AC 43 ms
51,712 KB
testcase_04 AC 43 ms
51,968 KB
testcase_05 AC 54 ms
61,312 KB
testcase_06 AC 52 ms
60,800 KB
testcase_07 AC 53 ms
61,568 KB
testcase_08 AC 56 ms
62,592 KB
testcase_09 AC 62 ms
66,432 KB
testcase_10 AC 66 ms
70,144 KB
testcase_11 AC 103 ms
91,136 KB
testcase_12 AC 128 ms
100,864 KB
testcase_13 AC 103 ms
90,240 KB
testcase_14 AC 153 ms
112,264 KB
testcase_15 AC 561 ms
207,788 KB
testcase_16 AC 756 ms
255,776 KB
testcase_17 AC 481 ms
208,360 KB
testcase_18 AC 1,957 ms
277,156 KB
testcase_19 AC 2,389 ms
289,776 KB
testcase_20 AC 3,121 ms
314,428 KB
testcase_21 AC 3,884 ms
362,504 KB
testcase_22 AC 4,977 ms
353,532 KB
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353

fac=[1]
for i in range(1,100):
  fac.append(fac[-1]*i%mod)

finv=[]
for i in range(100):
  finv.append(pow(fac[i],mod-2,mod))

n=int(input())
s=[]
for i in range(n):
  s.append(list(map(lambda x:int(x)-1,input().split())))

S=set([0])

for si in s:
  nS=set()
  for i in S:
    for j in si:
      nS.add(i+(1<<(5*j)))
  S=nS

ans=0
for bit in S:
  res=fac[n]
  for j in range(9):
    x=bit&31
    res*=finv[x]
    res%=mod
    bit>>=5  
  ans+=res

print(ans%mod)
0