結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー ゼットゼット
提出日時 2024-06-21 22:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 694 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 105,184 KB
最終ジャッジ日時 2024-06-24 18:45:31
合計ジャッジ時間 17,806 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 667 ms
91,292 KB
testcase_01 AC 664 ms
91,424 KB
testcase_02 AC 666 ms
91,632 KB
testcase_03 AC 662 ms
91,376 KB
testcase_04 AC 665 ms
91,288 KB
testcase_05 AC 662 ms
91,332 KB
testcase_06 AC 666 ms
91,424 KB
testcase_07 AC 665 ms
91,168 KB
testcase_08 AC 674 ms
91,576 KB
testcase_09 AC 671 ms
91,288 KB
testcase_10 AC 671 ms
91,564 KB
testcase_11 AC 666 ms
91,564 KB
testcase_12 AC 684 ms
97,244 KB
testcase_13 AC 688 ms
94,608 KB
testcase_14 AC 682 ms
96,976 KB
testcase_15 AC 675 ms
91,976 KB
testcase_16 AC 690 ms
97,988 KB
testcase_17 AC 676 ms
100,468 KB
testcase_18 AC 671 ms
92,032 KB
testcase_19 AC 668 ms
91,800 KB
testcase_20 AC 671 ms
93,524 KB
testcase_21 AC 659 ms
91,412 KB
testcase_22 AC 665 ms
91,320 KB
testcase_23 AC 694 ms
105,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
u=[1]*(10**6)
mod=998244353
u2=[1]*(10**6)
for i in range(1,10**6):
  u[i]=u[i-1]*i
  u2[i]=pow(u[i],-1,mod)
  u[i]%=mod
def ncm(x,y):
  if y<0:
    return 0
  ans=u[x]*u2[x-y]
  ans%=mod
  ans*=u2[y]
  ans%=mod
  return ans
result=1
for i in range(N):
  x=A[i]
  result+=ncm(x+i+1,x)-1-(ncm(x+i,i)-1)
  result%=mod
print(result)
0