結果

問題 No.2891 Mint
ユーザー kaichou243kaichou243
提出日時 2024-09-13 21:44:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 502 bytes
コンパイル時間 4,452 ms
コンパイル使用メモリ 267,600 KB
実行使用メモリ 112,712 KB
最終ジャッジ日時 2024-09-13 21:44:56
合計ジャッジ時間 27,473 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 870 ms
112,712 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 898 ms
112,612 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 648 ms
83,840 KB
testcase_18 AC 377 ms
50,348 KB
testcase_19 AC 323 ms
45,312 KB
testcase_20 AC 603 ms
75,336 KB
testcase_21 AC 318 ms
45,008 KB
testcase_22 AC 718 ms
92,608 KB
testcase_23 AC 242 ms
34,872 KB
testcase_24 AC 558 ms
74,060 KB
testcase_25 AC 816 ms
101,760 KB
testcase_26 AC 760 ms
97,792 KB
testcase_27 AC 720 ms
92,032 KB
testcase_28 AC 854 ms
105,104 KB
testcase_29 AC 329 ms
47,104 KB
testcase_30 AC 589 ms
78,276 KB
testcase_31 AC 371 ms
49,872 KB
testcase_32 AC 649 ms
84,816 KB
testcase_33 AC 474 ms
61,440 KB
testcase_34 AC 506 ms
66,684 KB
testcase_35 AC 575 ms
75,136 KB
testcase_36 AC 616 ms
81,152 KB
testcase_37 AC 668 ms
88,064 KB
testcase_38 AC 603 ms
80,384 KB
testcase_39 AC 773 ms
100,668 KB
testcase_40 AC 804 ms
104,356 KB
testcase_41 AC 425 ms
58,484 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 740 ms
97,108 KB
testcase_48 AC 749 ms
95,244 KB
testcase_49 AC 870 ms
111,104 KB
testcase_50 AC 232 ms
33,536 KB
testcase_51 AC 606 ms
82,048 KB
testcase_52 AC 206 ms
31,488 KB
testcase_53 AC 479 ms
66,876 KB
testcase_54 AC 561 ms
76,288 KB
testcase_55 AC 104 ms
18,688 KB
testcase_56 AC 837 ms
111,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using ll=long long;
using mint=atcoder::modint998244353;
int main(){
	ll n,m;
	cin>>n>>m;
	set<ll> quo;
	ll sr=sqrtl(m);
	for(ll i=1;i<=sr;i++) quo.insert(m/i),quo.insert(i);
	vector<ll> qs(quo.begin(),quo.end());
	mint ans=m,inv2=mint(2).inv();
	ans*=n;
	for(ll i=0;i<qs.size()-1;i++){
		ll l=m/qs[i+1]+1,r=m/qs[i];
		if(l>n) continue;
		ans-=mint(qs[i])*mint(min(r,n)-l+1)*mint(min(r,n)+l)*inv2;
	}
	ans-=m;
	cout<<ans.val()<<endl;
}
0