結果

問題 No.2941 Sigma Music Game Score Problem
ユーザー tentententen
提出日時 2024-10-21 14:50:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 411 ms / 2,500 ms
コード長 1,906 bytes
コンパイル時間 2,150 ms
コンパイル使用メモリ 78,140 KB
実行使用メモリ 100,352 KB
最終ジャッジ日時 2024-10-21 14:50:18
合計ジャッジ時間 12,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,472 KB
testcase_01 AC 46 ms
50,404 KB
testcase_02 AC 47 ms
50,324 KB
testcase_03 AC 48 ms
50,168 KB
testcase_04 AC 47 ms
50,392 KB
testcase_05 AC 53 ms
50,344 KB
testcase_06 AC 49 ms
50,376 KB
testcase_07 AC 49 ms
50,472 KB
testcase_08 AC 49 ms
50,452 KB
testcase_09 AC 99 ms
52,068 KB
testcase_10 AC 76 ms
50,812 KB
testcase_11 AC 93 ms
51,956 KB
testcase_12 AC 79 ms
51,480 KB
testcase_13 AC 98 ms
51,872 KB
testcase_14 AC 112 ms
52,124 KB
testcase_15 AC 85 ms
51,980 KB
testcase_16 AC 388 ms
94,060 KB
testcase_17 AC 379 ms
95,908 KB
testcase_18 AC 390 ms
100,352 KB
testcase_19 AC 389 ms
95,332 KB
testcase_20 AC 346 ms
94,116 KB
testcase_21 AC 284 ms
63,840 KB
testcase_22 AC 294 ms
72,512 KB
testcase_23 AC 312 ms
63,632 KB
testcase_24 AC 385 ms
99,836 KB
testcase_25 AC 235 ms
58,456 KB
testcase_26 AC 47 ms
50,464 KB
testcase_27 AC 48 ms
50,280 KB
testcase_28 AC 46 ms
50,288 KB
testcase_29 AC 317 ms
62,912 KB
testcase_30 AC 304 ms
72,180 KB
testcase_31 AC 394 ms
100,120 KB
testcase_32 AC 411 ms
100,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    static final long DIV6 = pow(6, MOD - 2);
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long m = sc.nextLong();
        int n = sc.nextInt();
        long ans = 0;
        long prev = 0;
        while (n-- > 0) {
            long x = sc.nextLong();
            ans += calc(x - prev - 1);
            ans %= MOD;
            prev = x;
        }
        ans += calc(m - prev);
        ans %= MOD;
        System.out.println(ans);
    }
    
    static long calc(long x) {
        if (x >= MOD) {
            return calc(x % MOD);
        } else {
            return x * (x + 1) % MOD * (2 * x % MOD + 1) % MOD * DIV6 % MOD;
        }
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0