結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー NakLon131NakLon131
提出日時 2024-10-19 11:03:23
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,546 bytes
コンパイル時間 12,260 ms
コンパイル使用メモリ 392,620 KB
実行使用メモリ 33,208 KB
最終ジャッジ日時 2024-10-19 11:03:40
合計ジャッジ時間 16,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 0 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 1 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 195 ms
31,024 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 199 ms
31,456 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 75 ms
11,008 KB
testcase_30 AC 112 ms
15,820 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
	const MOD93: usize = 998244353;
    input!{
		m: usize, n: usize,
		mut x: [usize; n],
	}
	x.insert(0, 0);
	x.push(m+1); // 番兵を入れる

	let mut diff_list = vec![0; n+1];
	for i in 0..n+1 {
		diff_list[i] = x[i+1] - x[i];
	}

	// (各階差-1)の2乗の和を数え上げ
	let mut ans = 0;
	for i in 0..n+1 {
		ans += multi_sum_calc(diff_list[i]-1, MOD93);
		ans %= MOD93;
	}
	println!("{}", ans);
}

fn multi_sum_calc(x: usize, mods: usize) -> usize
{
	// (1/6)*x*(x+1)*(2x+1)
	let mut ret = x;
	ret *= x+1; ret %= mods;
	ret *= 2*x+1; ret %= mods;

	ret = div(ret, 6, mods);
	ret
}

// 繰り返し二乗法
fn mod_pow(mut a: usize, mut b: usize, mods: usize) -> usize {
	let mut res = 1;
	while b > 0 {
		if b % 2 == 1 {
			res *= a;
			res %= mods;
		}
		a *= a;
		a %= mods;
		b >>= 1;
	}
	res
}
// 繰り返し二乗法による除算
fn div(a: usize, b: usize, mods: usize) -> usize {
	let mut ans = a;
	let x = mod_pow(b, mods - 2, mods);
	ans *= x;
	ans %= mods;
	ans
}


// const MOD17: usize = 1000000007;

// const INF: usize = 1 << 60;
// let dx = vec![!0, 0, 1, 0]; // 上左下右
// let dy = vec![0, !0, 0, 1]; // 上左下右
// let d = vec!{(!0, 0), (0, !0), (1, 0), (0, 1)}; // 上左下右

#[allow(unused)]
use proconio::{input, marker::Chars, marker::Usize1};

#[allow(unused)]
use std::{
	mem::swap,
	cmp::min, cmp::max,
	cmp::Reverse,
	collections::HashSet, collections::BTreeSet,
	collections::HashMap, collections::BTreeMap,
	collections::BinaryHeap,
	collections::VecDeque,
	iter::FromIterator,
};
0