結果

問題 No.2001 Distanced Triple
ユーザー hir355hir355
提出日時 2022-07-08 22:05:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 1,332 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 53,744 KB
最終ジャッジ日時 2024-06-08 17:15:27
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,488 KB
testcase_01 AC 37 ms
52,800 KB
testcase_02 AC 37 ms
51,812 KB
testcase_03 AC 34 ms
52,616 KB
testcase_04 AC 36 ms
52,760 KB
testcase_05 AC 37 ms
52,596 KB
testcase_06 AC 36 ms
52,760 KB
testcase_07 AC 36 ms
52,644 KB
testcase_08 AC 36 ms
52,508 KB
testcase_09 AC 37 ms
52,912 KB
testcase_10 AC 38 ms
52,564 KB
testcase_11 AC 38 ms
52,484 KB
testcase_12 AC 39 ms
53,496 KB
testcase_13 AC 40 ms
52,540 KB
testcase_14 AC 40 ms
53,112 KB
testcase_15 AC 38 ms
52,876 KB
testcase_16 AC 38 ms
51,812 KB
testcase_17 AC 37 ms
52,368 KB
testcase_18 AC 37 ms
52,180 KB
testcase_19 AC 38 ms
52,016 KB
testcase_20 AC 37 ms
52,124 KB
testcase_21 AC 36 ms
52,944 KB
testcase_22 AC 36 ms
52,000 KB
testcase_23 AC 37 ms
53,376 KB
testcase_24 AC 39 ms
53,072 KB
testcase_25 AC 38 ms
51,944 KB
testcase_26 AC 38 ms
53,744 KB
testcase_27 AC 38 ms
51,808 KB
testcase_28 AC 38 ms
52,248 KB
testcase_29 AC 38 ms
53,504 KB
testcase_30 AC 39 ms
51,696 KB
testcase_31 AC 37 ms
52,704 KB
testcase_32 AC 35 ms
53,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
l, r = map(int, input().split())
r -= l - 1
a, b, c = map(int, input().split())
if a + b >= r or c >= r:
    print(0)
elif a + b >= c:
    p = r - a - b + 2
    print((p * (p - 1) * (p - 2) // 6) % MOD)
else:
    r -= 1
    b += a
    print(((r + 2 - c) * (r + 1 - c) * (r + 3 + 2 * c - 3 * b) // 6) % MOD)
0