結果

問題 No.2792 Security Cameras on Young Diagram
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-06-21 22:37:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 309 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 97,144 KB
最終ジャッジ日時 2024-06-24 18:45:49
合計ジャッジ時間 3,781 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
90,344 KB
testcase_01 AC 101 ms
90,220 KB
testcase_02 AC 102 ms
90,232 KB
testcase_03 AC 107 ms
90,100 KB
testcase_04 AC 104 ms
90,096 KB
testcase_05 AC 103 ms
90,096 KB
testcase_06 AC 105 ms
89,972 KB
testcase_07 AC 104 ms
90,352 KB
testcase_08 AC 103 ms
90,060 KB
testcase_09 AC 103 ms
90,220 KB
testcase_10 AC 106 ms
90,348 KB
testcase_11 AC 104 ms
90,228 KB
testcase_12 AC 131 ms
94,708 KB
testcase_13 AC 128 ms
93,428 KB
testcase_14 AC 133 ms
96,244 KB
testcase_15 AC 124 ms
90,356 KB
testcase_16 AC 134 ms
95,304 KB
testcase_17 AC 138 ms
97,144 KB
testcase_18 AC 122 ms
90,608 KB
testcase_19 AC 120 ms
90,744 KB
testcase_20 AC 123 ms
91,892 KB
testcase_21 AC 101 ms
90,320 KB
testcase_22 AC 102 ms
90,100 KB
testcase_23 AC 141 ms
97,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
M=998244353
fa=[1,1]
fb=[1,1]
for i in range(2,200001):
  fa+=[fa[-1]*i%M]
  fb+=[fb[-1]*(M//i)*fb[M%i]*fa[M%i-1]*(-1)%M]
a=list(map(int,input().split()))+[0]
a.reverse()
g=1
w=0
for i in range(n):
  for j in range(1,a[i+1]-a[i]+1):
    w+=1
    g+=fa[n-i-1+w]*fb[n-i-1]*fb[w]
    g%=M
print(g)
0