結果

問題 No.2033 Chromatic Duel
ユーザー とりゐとりゐ
提出日時 2022-07-21 21:44:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 82,872 KB
最終ジャッジ日時 2024-07-22 17:07:00
合計ジャッジ時間 3,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 64 ms
67,968 KB
testcase_02 AC 53 ms
65,664 KB
testcase_03 AC 53 ms
65,792 KB
testcase_04 WA -
testcase_05 AC 85 ms
82,304 KB
testcase_06 AC 77 ms
80,128 KB
testcase_07 AC 79 ms
77,440 KB
testcase_08 AC 69 ms
73,856 KB
testcase_09 AC 61 ms
67,584 KB
testcase_10 AC 72 ms
76,928 KB
testcase_11 AC 57 ms
67,456 KB
testcase_12 AC 75 ms
78,376 KB
testcase_13 AC 83 ms
78,720 KB
testcase_14 AC 77 ms
79,104 KB
testcase_15 AC 84 ms
80,896 KB
testcase_16 AC 55 ms
65,536 KB
testcase_17 AC 55 ms
65,588 KB
testcase_18 AC 54 ms
65,536 KB
testcase_19 AC 54 ms
65,312 KB
testcase_20 WA -
testcase_21 AC 79 ms
80,768 KB
testcase_22 WA -
testcase_23 AC 52 ms
65,664 KB
testcase_24 AC 54 ms
65,628 KB
testcase_25 AC 80 ms
81,280 KB
testcase_26 AC 55 ms
66,176 KB
testcase_27 AC 58 ms
66,432 KB
testcase_28 AC 53 ms
65,664 KB
testcase_29 AC 63 ms
69,120 KB
testcase_30 AC 58 ms
67,840 KB
testcase_31 AC 73 ms
77,312 KB
testcase_32 AC 52 ms
66,816 KB
testcase_33 AC 77 ms
80,256 KB
testcase_34 AC 84 ms
82,688 KB
testcase_35 AC 69 ms
72,320 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod=998244353
M=(10**5)*3+1 
fac=[1]*M
ninv=[1]*M
finv=[1]*M
for i in range(2,M):
  fac[i]=fac[i-1]*i%mod
  ninv[i]=(-(mod//i)*ninv[mod%i])%mod
  finv[i]=finv[i-1]*ninv[i]%mod

def binom(n,k):
  if n<0 or k<0:
    return 0
  if k>n:
    return 0
  return (fac[n]*finv[k]%mod)*finv[n-k]%mod

N,B,W=map(int,input().split())
ans=0

for t,p,q in [[1,2,0],[2,3,1],[1,4,2]]:
  for c1 in range(B):
    x=B-1-c1
    y=N+1-W-c1-p
    c2=3*x-y
    c3=y-2*x
    if c2<0 or c3<0:
      continue
    ans+=t*binom(B-1,c1)*binom(B-1-c1,c2)%mod*binom(W+c3+q-1,c3+q-1)
    ans%=mod

print(ans)
0