結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,628 KB
testcase_01 AC 40 ms
52,560 KB
testcase_02 AC 70 ms
78,944 KB
testcase_03 AC 38 ms
53,348 KB
testcase_04 AC 39 ms
53,664 KB
testcase_05 AC 49 ms
63,052 KB
testcase_06 AC 49 ms
62,160 KB
testcase_07 AC 49 ms
64,160 KB
testcase_08 AC 53 ms
67,704 KB
testcase_09 AC 58 ms
71,976 KB
testcase_10 AC 70 ms
80,004 KB
testcase_11 AC 120 ms
113,200 KB
testcase_12 AC 142 ms
110,028 KB
testcase_13 AC 122 ms
111,032 KB
testcase_14 AC 167 ms
116,340 KB
testcase_15 AC 554 ms
258,180 KB
testcase_16 AC 735 ms
256,908 KB
testcase_17 AC 569 ms
252,976 KB
testcase_18 AC 1,486 ms
320,028 KB
testcase_19 AC 1,735 ms
341,832 KB
testcase_20 AC 2,168 ms
310,876 KB
testcase_21 AC 2,547 ms
348,540 KB
testcase_22 AC 3,351 ms
373,192 KB
testcase_23 AC 4,181 ms
407,612 KB
testcase_24 AC 37 ms
52,708 KB
testcase_25 AC 176 ms
133,852 KB
testcase_26 AC 3,687 ms
425,968 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=[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