結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー ks2mks2m
提出日時 2024-10-18 23:00:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 627 ms / 2,500 ms
コード長 1,068 bytes
コンパイル時間 3,425 ms
コンパイル使用メモリ 77,252 KB
実行使用メモリ 145,892 KB
最終ジャッジ日時 2024-10-18 23:01:45
合計ジャッジ時間 13,599 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,892 KB
testcase_01 AC 63 ms
49,904 KB
testcase_02 AC 64 ms
50,264 KB
testcase_03 AC 49 ms
50,340 KB
testcase_04 AC 50 ms
50,012 KB
testcase_05 AC 50 ms
49,916 KB
testcase_06 AC 49 ms
50,020 KB
testcase_07 AC 72 ms
49,996 KB
testcase_08 AC 64 ms
50,384 KB
testcase_09 AC 114 ms
51,664 KB
testcase_10 AC 63 ms
51,160 KB
testcase_11 AC 81 ms
51,168 KB
testcase_12 AC 74 ms
51,444 KB
testcase_13 AC 96 ms
51,812 KB
testcase_14 AC 96 ms
51,884 KB
testcase_15 AC 81 ms
51,540 KB
testcase_16 AC 604 ms
125,988 KB
testcase_17 AC 588 ms
131,336 KB
testcase_18 AC 600 ms
138,020 KB
testcase_19 AC 590 ms
127,356 KB
testcase_20 AC 428 ms
111,348 KB
testcase_21 AC 361 ms
76,060 KB
testcase_22 AC 347 ms
78,732 KB
testcase_23 AC 340 ms
76,288 KB
testcase_24 AC 607 ms
140,624 KB
testcase_25 AC 251 ms
64,036 KB
testcase_26 AC 50 ms
50,264 KB
testcase_27 AC 50 ms
50,320 KB
testcase_28 AC 49 ms
50,100 KB
testcase_29 AC 353 ms
88,500 KB
testcase_30 AC 471 ms
109,924 KB
testcase_31 AC 617 ms
145,516 KB
testcase_32 AC 627 ms
145,892 KB
権限があれば一括ダウンロードができます

ソースコード

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;
			d %= mod;
			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