結果

問題 No.2001 Distanced Triple
ユーザー ygd.ygd.
提出日時 2022-07-09 11:24:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,105 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-06-09 16:54:52
合計ジャッジ時間 2,384 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,808 KB
testcase_01 AC 38 ms
52,700 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,764 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 38 ms
52,084 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,184 KB
testcase_09 AC 37 ms
52,832 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,456 KB
testcase_12 AC 37 ms
53,492 KB
testcase_13 AC 38 ms
52,400 KB
testcase_14 AC 36 ms
53,140 KB
testcase_15 AC 37 ms
51,808 KB
testcase_16 AC 37 ms
52,644 KB
testcase_17 AC 38 ms
52,136 KB
testcase_18 AC 37 ms
52,432 KB
testcase_19 AC 37 ms
52,680 KB
testcase_20 AC 36 ms
53,152 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 37 ms
52,372 KB
testcase_24 AC 36 ms
53,100 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 36 ms
52,068 KB
testcase_30 AC 35 ms
53,056 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

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)

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

    print(ans%MOD)


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