結果

問題 No.2001 Distanced Triple
ユーザー ygd.ygd.
提出日時 2022-07-09 11:30:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,207 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-06-09 17:00:02
合計ジャッジ時間 2,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 34 ms
51,968 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 33 ms
51,840 KB
testcase_04 AC 33 ms
51,840 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 33 ms
52,096 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 34 ms
51,968 KB
testcase_10 AC 32 ms
51,712 KB
testcase_11 AC 33 ms
51,968 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 34 ms
52,096 KB
testcase_14 AC 34 ms
52,224 KB
testcase_15 AC 36 ms
51,584 KB
testcase_16 AC 35 ms
52,096 KB
testcase_17 AC 36 ms
51,968 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 34 ms
52,096 KB
testcase_20 AC 34 ms
52,096 KB
testcase_21 AC 35 ms
51,968 KB
testcase_22 AC 35 ms
51,840 KB
testcase_23 AC 34 ms
51,968 KB
testcase_24 AC 34 ms
52,096 KB
testcase_25 AC 36 ms
52,224 KB
testcase_26 AC 34 ms
52,096 KB
testcase_27 AC 34 ms
51,840 KB
testcase_28 AC 35 ms
51,840 KB
testcase_29 AC 34 ms
51,968 KB
testcase_30 AC 33 ms
52,096 KB
testcase_31 AC 34 ms
52,096 KB
testcase_32 AC 32 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

inv2 = pow(2,MOD-2,MOD)
inv6 = pow(6,MOD-2,MOD)

def sumk(a):
    return a*(a+1)%MOD*inv2%MOD

def sumk2(a):
    return a*(a+1)%MOD*(2*a+1)%MOD*inv6%MOD

def main():
    L,R = map(int,input().split())
    A,B,C = map(int,input().split())

    btm = max(A+B,C)
    top = R - L

    if btm > top:
        print(0);exit()

    beta = top + 1
    alpha = 1 - (B+A)

    #print(top,btm)

    left = top+1-(B+A)
    right = (top+1-btm)
    #print(left,right)

    ans = 0
    ans -= sumk2(top) - sumk2(btm-1)
    #print(ans)
    ans += (beta - alpha) * (sumk(top) - sumk(btm-1)) %MOD
    #print(ans)
    ans += alpha * beta %MOD * (top - btm + 1) %MOD

    print(ans%MOD)


if __name__ == '__main__':
    main()
0