結果

問題 No.2568 列辞書順列列
ユーザー tentententen
提出日時 2023-12-04 18:12:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 617 ms / 3,000 ms
コード長 2,108 bytes
コンパイル時間 2,755 ms
コンパイル使用メモリ 92,240 KB
実行使用メモリ 65,124 KB
最終ジャッジ日時 2024-09-26 23:07:32
合計ジャッジ時間 18,509 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,796 KB
testcase_01 AC 52 ms
37,012 KB
testcase_02 AC 327 ms
49,252 KB
testcase_03 AC 288 ms
47,884 KB
testcase_04 AC 546 ms
51,284 KB
testcase_05 AC 435 ms
51,420 KB
testcase_06 AC 416 ms
49,272 KB
testcase_07 AC 406 ms
51,288 KB
testcase_08 AC 410 ms
51,276 KB
testcase_09 AC 609 ms
64,784 KB
testcase_10 AC 617 ms
65,124 KB
testcase_11 AC 468 ms
54,212 KB
testcase_12 AC 511 ms
54,676 KB
testcase_13 AC 530 ms
54,296 KB
testcase_14 AC 496 ms
54,492 KB
testcase_15 AC 520 ms
54,264 KB
testcase_16 AC 505 ms
54,280 KB
testcase_17 AC 575 ms
64,676 KB
testcase_18 AC 509 ms
54,392 KB
testcase_19 AC 585 ms
64,464 KB
testcase_20 AC 484 ms
53,884 KB
testcase_21 AC 502 ms
54,036 KB
testcase_22 AC 492 ms
54,700 KB
testcase_23 AC 481 ms
54,476 KB
testcase_24 AC 493 ms
54,180 KB
testcase_25 AC 488 ms
54,676 KB
testcase_26 AC 486 ms
54,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        int q = sc.nextInt();
        long[] dp = new long[n + 1];
        long[] pows = new long[n + 1];
        pows[0] = 1;
        for (int i = 1; i <= n; i++) {
            dp[i] = (dp[i - 1] * m % MOD + sc.nextInt() - 1) % MOD;
            pows[i] = pows[i - 1] * m % MOD;
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int left = sc.nextInt() - 1;
            int right = sc.nextInt();
            sb.append((dp[right] - (dp[left] * pows[right - left] % MOD) + MOD + 1) % MOD).append("\n");
        }
        
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0