結果

問題 No.2891 Mint
ユーザー 沙耶花沙耶花
提出日時 2024-09-13 21:37:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 1,046 bytes
コンパイル時間 4,498 ms
コンパイル使用メモリ 265,116 KB
実行使用メモリ 52,692 KB
最終ジャッジ日時 2024-09-13 21:38:34
合計ジャッジ時間 17,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 109 ms
52,556 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 716 ms
52,692 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 549 ms
52,692 KB
testcase_18 AC 312 ms
28,000 KB
testcase_19 AC 277 ms
27,988 KB
testcase_20 AC 480 ms
52,688 KB
testcase_21 AC 276 ms
28,116 KB
testcase_22 AC 597 ms
52,564 KB
testcase_23 AC 210 ms
28,108 KB
testcase_24 AC 475 ms
52,692 KB
testcase_25 AC 661 ms
52,684 KB
testcase_26 AC 620 ms
52,560 KB
testcase_27 AC 586 ms
52,564 KB
testcase_28 AC 673 ms
52,560 KB
testcase_29 AC 303 ms
28,112 KB
testcase_30 AC 498 ms
52,560 KB
testcase_31 AC 323 ms
27,984 KB
testcase_32 AC 569 ms
52,564 KB
testcase_33 AC 416 ms
52,688 KB
testcase_34 AC 451 ms
52,688 KB
testcase_35 AC 508 ms
52,684 KB
testcase_36 AC 542 ms
52,564 KB
testcase_37 AC 119 ms
52,560 KB
testcase_38 AC 112 ms
52,492 KB
testcase_39 AC 132 ms
52,564 KB
testcase_40 AC 133 ms
52,688 KB
testcase_41 AC 70 ms
28,112 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 126 ms
52,684 KB
testcase_48 AC 127 ms
52,564 KB
testcase_49 AC 139 ms
52,528 KB
testcase_50 AC 48 ms
28,108 KB
testcase_51 AC 115 ms
52,560 KB
testcase_52 AC 36 ms
15,700 KB
testcase_53 AC 101 ms
52,556 KB
testcase_54 AC 107 ms
52,560 KB
testcase_55 AC 25 ms
15,696 KB
testcase_56 AC 140 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001LL

//[[l,r],v] l<=x<=rは, floor(N/x)=v
vector<pair<pair<long long,long long>,long long>> get_floor(long long N){
	vector<pair<pair<long long,long long>,long long>> ret;
	for(long long i=1;i<=N;i++){
		long long v = N/i;
		ret.emplace_back(make_pair(i,0),v);
		i = N/v;
		ret.back().first.second = i;
	}
	
	return ret;
}
mint sum(long long n){
	mint ret = n;
	ret *= n+1;
	ret /= 2;
	return ret;
}
mint sum(long long l,long long r){
	return sum(r) - sum(l-1);
}
int main(){
	
	long long N,M;
	cin>>N>>M;
	auto ret = get_floor(M);
	
	mint ans = M;
	ans *= N;
	rep(i,ret.size()){
		long long l = ret[i].first.first;
		long long r = ret[i].first.second;
		r = min(r,N);
		if(l>r)continue;
		long long v = ret[i].second;
		mint t= sum(l,r);
		ans -= t * v;
	}
	
	cout<<ans.val()<<endl;
	return 0;
	
}
0