結果

問題 No.2452 Incline
ユーザー tailstails
提出日時 2023-09-04 14:06:15
言語 cLay
(20240714-1)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 4,262 ms
コンパイル使用メモリ 175,440 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 12:29:03
合計ジャッジ時間 4,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 88 ms
6,944 KB
testcase_04 AC 81 ms
6,940 KB
testcase_05 AC 80 ms
6,940 KB
testcase_06 AC 80 ms
6,944 KB
testcase_07 AC 82 ms
6,940 KB
testcase_08 AC 78 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353
ll n;
Mint f(ll x){
	Mint q=x/n;
	return q*(n*(q-1)/2+x%n+1);
}
{
	ll@t;
	rep(t){
		rd(n--);
		ll@m,@l--,@r;
		wt(f(r)-f(l)+f(m+~l)-f(m+~r)+r-l);
	}
}
0