結果

問題 No.2807 Have Another Go (Easy)
ユーザー tentententen
提出日時 2024-07-17 10:58:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,190 bytes
コンパイル時間 3,216 ms
コンパイル使用メモリ 81,352 KB
実行使用メモリ 61,084 KB
最終ジャッジ日時 2024-07-17 10:58:45
合計ジャッジ時間 12,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
51,024 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 96 ms
51,336 KB
testcase_37 AC 89 ms
51,144 KB
testcase_38 AC 122 ms
52,264 KB
testcase_39 AC 80 ms
51,288 KB
testcase_40 AC 104 ms
51,936 KB
testcase_41 AC 109 ms
52,308 KB
testcase_42 AC 111 ms
52,180 KB
testcase_43 AC 101 ms
51,880 KB
testcase_44 AC 104 ms
51,940 KB
testcase_45 AC 106 ms
51,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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 k = sc.nextInt();
        int[] dp = new int[n * 2 + 7];
        dp[0] = 1;
        for (int i = 0; i < n * 2; i++) {
            for (int j = 1; j <= 6; j++) {
                dp[i + j] += dp[i];
                dp[i + j] %= MOD;
            }
        }
        int[] fp = new int[n * 2 + 7];
        for (int i = 0; i < 6; i++) {
            fp[n * 2 + i] = 1;
        }
        for (int i = n * 2 + 5; i > 0; i--) {
            for (int j = 1; j <= 6; j++) {
                if (i - j >= 0 && i - j < n * 2) {
                    fp[i - j] += fp[i];
                    fp[i - j] %= MOD;
                }
            }
        }
        String result = IntStream.range(0, k).mapToObj(i -> {
            int x = sc.nextInt();
            long ans = ((dp[x] * fp[x] % MOD + dp[x + n] * fp[x + n] % MOD) % MOD
                + MOD - dp[x] * dp[n] % MOD * fp[x + n] % MOD) % MOD;
            return String.valueOf(ans);
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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