結果

問題 No.2772 Appearing Even Times
ユーザー tenten
提出日時 2024-06-04 15:01:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 397 ms / 4,000 ms
コード長 2,041 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 78,600 KB
実行使用メモリ 80,268 KB
最終ジャッジ日時 2024-12-23 10:53:45
合計ジャッジ時間 7,872 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

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();
        char[] num = sc.next().toCharArray();
        int length = num.length;
        int[][] dp = new int[length][1 << 10];
        for (int i = 1; i < num[0] - '0'; i++) {
            dp[0][1 << i]++;
        }
        int current = (1 << (num[0] - '0'));
        for (int i = 1; i < length; i++) {
            for (int j = 0; j < (1 << 10); j++) {
                for (int k = 0; k < 10; k++) {
                    dp[i][j ^ (1 << k)] += dp[i - 1][j];
                    dp[i][j ^ (1 << k)] %= MOD;
                }
            }
            int x = num[i] - '0';
            for (int j = 0; j < x; j++) {
                dp[i][current ^ (1 << j)]++;
            }
            for (int j = 1; j < 10; j++) {
                dp[i][1 << j]++;
            }
            current ^= (1 << x);
        }
        if (current == 0) {
            dp[length - 1][0]++;
        }
        System.out.println(dp[length - 1][0] %= MOD);
    }
}
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