結果
問題 | No.2772 Appearing Even Times |
ユーザー | tenten |
提出日時 | 2024-06-04 15:01:08 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 402 ms / 4,000 ms |
コード長 | 2,041 bytes |
コンパイル時間 | 2,324 ms |
コンパイル使用メモリ | 78,792 KB |
実行使用メモリ | 80,620 KB |
最終ジャッジ日時 | 2024-06-04 15:01:18 |
合計ジャッジ時間 | 8,234 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
37,080 KB |
testcase_01 | AC | 50 ms
37,080 KB |
testcase_02 | AC | 55 ms
37,468 KB |
testcase_03 | AC | 51 ms
36,968 KB |
testcase_04 | AC | 53 ms
36,956 KB |
testcase_05 | AC | 51 ms
37,060 KB |
testcase_06 | AC | 50 ms
37,012 KB |
testcase_07 | AC | 49 ms
37,048 KB |
testcase_08 | AC | 328 ms
80,280 KB |
testcase_09 | AC | 350 ms
80,516 KB |
testcase_10 | AC | 49 ms
37,160 KB |
testcase_11 | AC | 51 ms
37,076 KB |
testcase_12 | AC | 319 ms
80,452 KB |
testcase_13 | AC | 326 ms
80,164 KB |
testcase_14 | AC | 318 ms
80,620 KB |
testcase_15 | AC | 349 ms
80,108 KB |
testcase_16 | AC | 335 ms
80,272 KB |
testcase_17 | AC | 402 ms
80,084 KB |
testcase_18 | AC | 355 ms
80,292 KB |
testcase_19 | AC | 400 ms
79,892 KB |
testcase_20 | AC | 313 ms
79,948 KB |
testcase_21 | AC | 328 ms
79,644 KB |
ソースコード
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(); } } }