結果

問題 No.2136 Dice Calendar?
ユーザー とりゐとりゐ
提出日時 2022-12-03 20:54:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,163 ms / 5,000 ms
コード長 565 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 449,392 KB
最終ジャッジ日時 2024-10-11 00:25:49
合計ジャッジ時間 23,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 68 ms
77,312 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 50 ms
62,592 KB
testcase_06 AC 49 ms
62,336 KB
testcase_07 AC 50 ms
62,848 KB
testcase_08 AC 52 ms
65,536 KB
testcase_09 AC 69 ms
75,776 KB
testcase_10 AC 68 ms
78,848 KB
testcase_11 AC 107 ms
104,320 KB
testcase_12 AC 137 ms
121,472 KB
testcase_13 AC 119 ms
108,856 KB
testcase_14 AC 189 ms
128,536 KB
testcase_15 AC 546 ms
257,068 KB
testcase_16 AC 738 ms
257,408 KB
testcase_17 AC 552 ms
256,160 KB
testcase_18 AC 1,611 ms
315,904 KB
testcase_19 AC 1,922 ms
356,444 KB
testcase_20 AC 2,214 ms
341,372 KB
testcase_21 AC 2,430 ms
327,148 KB
testcase_22 AC 3,630 ms
389,048 KB
testcase_23 AC 4,163 ms
449,392 KB
testcase_24 AC 38 ms
52,224 KB
testcase_25 AC 175 ms
133,884 KB
testcase_26 AC 3,648 ms
398,832 KB
権限があれば一括ダウンロードができます

ソースコード

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.sort()
S=[0]

for si in s:
  nS=[]
  for i in S:
    for j in si:
      nS.append(i+(1<<(5*j)))
  nS.sort()
  S=[]
  last=-1
  for i in nS:
    if i!=last:
      S.append(i)
      last=i

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