結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー ks2mks2m
提出日時 2024-10-18 21:54:44
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,055 bytes
コンパイル時間 7,852 ms
コンパイル使用メモリ 76,880 KB
実行使用メモリ 146,088 KB
最終ジャッジ日時 2024-10-18 22:43:13
合計ジャッジ時間 17,157 ms
ジャッジサーバーID
(参考情報)
judge7 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,212 KB
testcase_01 AC 56 ms
49,852 KB
testcase_02 AC 86 ms
50,204 KB
testcase_03 AC 62 ms
50,300 KB
testcase_04 AC 55 ms
50,068 KB
testcase_05 AC 65 ms
50,232 KB
testcase_06 AC 53 ms
50,236 KB
testcase_07 AC 52 ms
50,196 KB
testcase_08 AC 52 ms
49,904 KB
testcase_09 AC 97 ms
51,652 KB
testcase_10 AC 73 ms
50,660 KB
testcase_11 AC 97 ms
51,252 KB
testcase_12 AC 82 ms
51,476 KB
testcase_13 AC 107 ms
51,968 KB
testcase_14 AC 118 ms
51,764 KB
testcase_15 AC 74 ms
51,264 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 631 ms
138,240 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 604 ms
140,496 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 63 ms
50,288 KB
testcase_29 AC 402 ms
88,264 KB
testcase_30 AC 491 ms
109,872 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long m = Long.parseLong(sa[0]);
		int n = Integer.parseInt(sa[1]);
		sa = br.readLine().split(" ");
		long[] x = new long[n + 2];
		for (int i = 0; i < n; i++) {
			x[i + 1] = Long.parseLong(sa[i]);
		}
		br.close();
		x[n + 1] = m + 1;

		int mod = 998244353;
		long m6 = modinv(6, mod);
		long ans = 0;
		for (int i = 1; i < x.length; i++) {
			long d = x[i] - x[i - 1] - 1;
			long val = d * (d + 1) % mod * (2 * d + 1) % mod * m6 % mod;
			ans += val;
		}
		ans %= mod;
		System.out.println(ans);
	}

	static long modinv(long a, int m) {
		long b = m;
		long u = 1;
		long v = 0;
		long tmp = 0;

		while (b > 0) {
			long t = a / b;
			a -= t * b;
			tmp = a;
			a = b;
			b = tmp;

			u -= t * v;
			tmp = u;
			u = v;
			v = tmp;
		}

		u %= m;
		if (u < 0) u += m;
		return u;
	}
}
0