結果

問題 No.2940 Sigma Sigma Div Floor Problem
ユーザー shobonvipshobonvip
提出日時 2024-10-18 21:29:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 6,000 ms
コード長 1,388 bytes
コンパイル時間 4,346 ms
コンパイル使用メモリ 262,612 KB
実行使用メモリ 10,144 KB
最終ジャッジ日時 2024-10-18 22:07:51
合計ジャッジ時間 146,265 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,884 KB
testcase_01 AC 2 ms
10,020 KB
testcase_02 AC 2 ms
9,888 KB
testcase_03 AC 2 ms
10,144 KB
testcase_04 AC 2 ms
10,016 KB
testcase_05 AC 2 ms
10,012 KB
testcase_06 AC 2 ms
10,140 KB
testcase_07 AC 2 ms
10,016 KB
testcase_08 AC 2 ms
10,144 KB
testcase_09 AC 2 ms
10,016 KB
testcase_10 AC 2 ms
10,016 KB
testcase_11 AC 2 ms
10,144 KB
testcase_12 AC 2 ms
10,016 KB
testcase_13 AC 2 ms
10,016 KB
testcase_14 AC 2 ms
10,016 KB
testcase_15 AC 2 ms
10,144 KB
testcase_16 AC 2 ms
10,144 KB
testcase_17 AC 4 ms
10,016 KB
testcase_18 AC 22 ms
10,012 KB
testcase_19 AC 18 ms
10,012 KB
testcase_20 AC 17 ms
6,940 KB
testcase_21 AC 29 ms
6,940 KB
testcase_22 AC 6 ms
6,940 KB
testcase_23 AC 8 ms
6,940 KB
testcase_24 AC 15 ms
6,940 KB
testcase_25 AC 14 ms
6,944 KB
testcase_26 AC 19 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 30 ms
6,944 KB
testcase_29 AC 30 ms
6,940 KB
testcase_30 AC 5 ms
6,940 KB
testcase_31 AC 8 ms
6,940 KB
testcase_32 AC 4 ms
6,944 KB
08_evil_01.txt TLE -
08_evil_02.txt TLE -
08_evil_03.txt TLE -
08_evil_04.txt TLE -
08_evil_05.txt TLE -
08_evil_06.txt TLE -
08_evil_07.txt TLE -
08_evil_08.txt TLE -
08_evil_09.txt TLE -
08_evil_10.txt TLE -
08_evil_11.txt TLE -
08_evil_12.txt TLE -
08_evil_13.txt TLE -
08_evil_14.txt TLE -
08_evil_15.txt TLE -
08_evil_16.txt TLE -
08_evil_17.txt TLE -
08_evil_18.txt TLE -
08_evil_19.txt TLE -
08_evil_20.txt TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

/**
	author:  shobonvip
	created: 2024.10.18 21:21:22
**/

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	ll n; cin >> n;
	mint ans = 0;
	const mint inv2 = mint(2).inv();
	n += 1;
	for (ll j=1; j<=n; j++){
		ll f = n / j;
		ll g = n % j;
		ans += mint(f) * (f-1) * inv2 * j;
		ans += mint(g) * f;
	}

	cout << ans.val() << '\n';
}

0