結果

問題 No.2452 Incline
ユーザー 👑 p-adicp-adic
提出日時 2023-08-19 23:51:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 400 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 77,696 KB
最終ジャッジ日時 2024-06-09 04:45:52
合計ジャッジ時間 3,661 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 388 ms
77,696 KB
testcase_04 AC 400 ms
76,748 KB
testcase_05 AC 393 ms
77,184 KB
testcase_06 AC 333 ms
76,800 KB
testcase_07 AC 391 ms
77,056 KB
testcase_08 AC 326 ms
76,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
P=998244353
u=(P+1)//2
for t in range(int(I())):
	N,M,L,R=map(int,I().split())
	N-=1
	a,b,c,d=R//N,-((M-L)//N),-((M-R)//N),L//N
	print((M*(c-b)+R*(a-c+1)+((d+b)*(d-b+1)-(a+c)*(a-c+1))*u*N-L*(d-b+1)+a-b+1)%P)
0