結果

問題 No.2001 Distanced Triple
ユーザー first_vilfirst_vil
提出日時 2022-07-09 00:34:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 1,280 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 54,480 KB
最終ジャッジ日時 2024-06-09 05:30:04
合計ジャッジ時間 2,309 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
54,480 KB
testcase_01 AC 32 ms
53,872 KB
testcase_02 AC 32 ms
52,960 KB
testcase_03 AC 32 ms
52,188 KB
testcase_04 AC 31 ms
52,832 KB
testcase_05 AC 32 ms
52,144 KB
testcase_06 AC 31 ms
52,768 KB
testcase_07 AC 33 ms
53,496 KB
testcase_08 AC 33 ms
53,188 KB
testcase_09 AC 35 ms
52,772 KB
testcase_10 AC 32 ms
52,816 KB
testcase_11 AC 33 ms
53,688 KB
testcase_12 AC 32 ms
52,888 KB
testcase_13 AC 31 ms
53,976 KB
testcase_14 AC 31 ms
53,340 KB
testcase_15 AC 33 ms
53,132 KB
testcase_16 AC 32 ms
52,432 KB
testcase_17 AC 33 ms
53,092 KB
testcase_18 AC 32 ms
53,724 KB
testcase_19 AC 33 ms
52,196 KB
testcase_20 AC 32 ms
52,764 KB
testcase_21 AC 31 ms
52,812 KB
testcase_22 AC 31 ms
53,364 KB
testcase_23 AC 32 ms
52,344 KB
testcase_24 AC 32 ms
52,460 KB
testcase_25 AC 32 ms
52,436 KB
testcase_26 AC 35 ms
52,884 KB
testcase_27 AC 33 ms
52,880 KB
testcase_28 AC 32 ms
53,020 KB
testcase_29 AC 31 ms
52,412 KB
testcase_30 AC 34 ms
52,532 KB
testcase_31 AC 32 ms
52,764 KB
testcase_32 AC 31 ms
52,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

int1 = lambda x: int(x) - 1

# input = lambda: sys.stdin.buffer.readline()
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
i1 = lambda: int1(input())
mi = lambda: map(int, input().split())
mi1 = lambda: map(int1, input().split())
li = lambda: list(mi())
li1 = lambda: list(mi1())
lli = lambda n: [li() for _ in range(n)]

INF = float("inf")
# mod = int(1e9 + 7)
mod = 998244353

l, r = mi()
n = r - l + 1
a, b, c = mi()

sum_from_one_to_x = lambda x: x * (x + 1) // 2
sum_from_x_to_y = (
    lambda x, y: sum_from_one_to_x(y) - sum_from_one_to_x(x - 1) if x <= y else 0
)
sqsum_from_one_to_x = lambda x: x * (x + 1) * (2 * x + 1) // 6
sqsum_from_x_to_y = (
    lambda x, y: sqsum_from_one_to_x(y) - sqsum_from_one_to_x(x - 1) if x <= y else 0
)

ans = 0
if a + b < c:
    ans += max(n - (c + 1) + 1, 0) * (c - b - a + 1)
    ans += (n + a + b + 1) * sum_from_x_to_y(c + 2, n)
    ans += mod + max((n + 1) - (c + 2), 0) * (-n * (a + b) - (a + b)) % mod
    ans += mod - sqsum_from_x_to_y(c + 2, n) % mod
    ans %= mod
else:
    ans += (n + a + b + 1) * sum_from_x_to_y(a + b + 1, n)
    ans += mod + max((n + 1) - (a + b + 1), 0) * (-n * (a + b) - (a + b)) % mod
    ans += mod - sqsum_from_x_to_y(a + b + 1, n) % mod
    ans %= mod
print(ans)
0