結果

問題 No.2001 Distanced Triple
ユーザー KazunKazun
提出日時 2022-05-15 03:00:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 409 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 54,040 KB
最終ジャッジ日時 2024-09-12 22:27:41
合計ジャッジ時間 2,705 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,408 KB
testcase_01 AC 37 ms
52,692 KB
testcase_02 AC 38 ms
52,676 KB
testcase_03 AC 38 ms
52,688 KB
testcase_04 AC 38 ms
53,164 KB
testcase_05 AC 38 ms
53,240 KB
testcase_06 AC 37 ms
52,132 KB
testcase_07 AC 37 ms
52,548 KB
testcase_08 AC 38 ms
52,860 KB
testcase_09 AC 41 ms
52,492 KB
testcase_10 AC 37 ms
53,476 KB
testcase_11 AC 37 ms
52,836 KB
testcase_12 AC 38 ms
52,328 KB
testcase_13 AC 38 ms
52,524 KB
testcase_14 AC 38 ms
52,068 KB
testcase_15 AC 38 ms
52,896 KB
testcase_16 AC 38 ms
52,956 KB
testcase_17 AC 38 ms
52,252 KB
testcase_18 AC 37 ms
52,696 KB
testcase_19 AC 38 ms
52,892 KB
testcase_20 AC 38 ms
51,948 KB
testcase_21 AC 38 ms
52,500 KB
testcase_22 AC 38 ms
52,184 KB
testcase_23 AC 39 ms
52,684 KB
testcase_24 AC 38 ms
52,532 KB
testcase_25 AC 38 ms
53,744 KB
testcase_26 AC 38 ms
52,768 KB
testcase_27 AC 38 ms
51,876 KB
testcase_28 AC 38 ms
52,748 KB
testcase_29 AC 38 ms
54,040 KB
testcase_30 AC 38 ms
52,640 KB
testcase_31 AC 38 ms
52,964 KB
testcase_32 AC 38 ms
52,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def product_mod(*X):
    y=1
    for x in X:
        y=(y*(x%Mod))%Mod
    return y

def solve(L,R,A,B,C):
    C2=max(0,C-(A+B))
    D=R+1-(L+A+B+C2)

    if D<0:
        return 0

    inv_6=pow(6,Mod-2,Mod)
    return product_mod(inv_6, D, D+1, 2+3*C2+D)

#==================================================
L,R=map(int,input().split())
A,B,C=map(int,input().split())

Mod=998244353

print(solve(L,R,A,B,C))
0