結果

問題 No.2001 Distanced Triple
ユーザー tassei903tassei903
提出日時 2022-07-09 11:59:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 1,285 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,716 KB
最終ジャッジ日時 2024-06-09 17:30:53
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,716 KB
testcase_01 AC 40 ms
52,932 KB
testcase_02 AC 40 ms
53,224 KB
testcase_03 AC 37 ms
52,820 KB
testcase_04 AC 36 ms
53,484 KB
testcase_05 AC 39 ms
53,448 KB
testcase_06 AC 37 ms
52,624 KB
testcase_07 AC 37 ms
52,992 KB
testcase_08 AC 39 ms
52,684 KB
testcase_09 AC 39 ms
52,076 KB
testcase_10 AC 37 ms
52,364 KB
testcase_11 AC 37 ms
53,272 KB
testcase_12 AC 37 ms
53,172 KB
testcase_13 AC 37 ms
52,464 KB
testcase_14 AC 37 ms
53,060 KB
testcase_15 AC 36 ms
53,660 KB
testcase_16 AC 38 ms
53,284 KB
testcase_17 AC 37 ms
52,836 KB
testcase_18 AC 37 ms
53,272 KB
testcase_19 AC 38 ms
52,960 KB
testcase_20 AC 39 ms
52,360 KB
testcase_21 AC 37 ms
52,672 KB
testcase_22 AC 36 ms
52,328 KB
testcase_23 AC 37 ms
53,424 KB
testcase_24 AC 36 ms
53,024 KB
testcase_25 AC 36 ms
53,660 KB
testcase_26 AC 39 ms
52,856 KB
testcase_27 AC 37 ms
52,316 KB
testcase_28 AC 37 ms
53,212 KB
testcase_29 AC 37 ms
52,620 KB
testcase_30 AC 38 ms
53,220 KB
testcase_31 AC 39 ms
53,148 KB
testcase_32 AC 37 ms
53,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
l,r = na()
mod = 998244353
a,b,c = na()
z = max(a+b,c)
f = a+b
if z > r-l:
    print(0)
else:
    print(-(l-r+z-2)*(l-r+z-1)*(3*f+l-r-2*z-3)//6%mod)

0