結果

問題 No.2199 lower_bound and upper_bound
ユーザー titiatitia
提出日時 2023-01-26 02:01:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 541 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-06-27 02:12:58
合計ジャッジ時間 11,588 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 374 ms
49,920 KB
testcase_01 AC 369 ms
49,920 KB
testcase_02 AC 370 ms
49,920 KB
testcase_03 AC 385 ms
49,920 KB
testcase_04 AC 370 ms
49,792 KB
testcase_05 AC 369 ms
49,792 KB
testcase_06 AC 367 ms
49,920 KB
testcase_07 AC 371 ms
50,048 KB
testcase_08 AC 365 ms
49,920 KB
testcase_09 AC 366 ms
50,048 KB
testcase_10 AC 486 ms
49,920 KB
testcase_11 AC 380 ms
49,920 KB
testcase_12 AC 376 ms
50,048 KB
testcase_13 AC 541 ms
50,048 KB
testcase_14 AC 378 ms
49,920 KB
testcase_15 AC 367 ms
49,920 KB
testcase_16 AC 404 ms
49,792 KB
testcase_17 AC 405 ms
50,048 KB
testcase_18 AC 443 ms
49,792 KB
testcase_19 AC 487 ms
50,048 KB
testcase_20 AC 466 ms
50,048 KB
testcase_21 AC 418 ms
49,920 KB
testcase_22 AC 410 ms
49,792 KB
testcase_23 AC 441 ms
49,920 KB
testcase_24 AC 446 ms
49,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,L,U=map(int,input().split())

mod=998244353

FACT=[1]
for i in range(1,5*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(5*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0
k=U+1
ANS=0
for i in range(L,U+1):
    M=i+N
    ANS+=Combi(M+N-1,N-1)
    ANS-=Combi(N-1+M,N+k)
    ANS%=mod

print(ANS%mod)
0