結果
問題 | No.1452 XOR×OR |
ユーザー | tenten |
提出日時 | 2024-07-23 10:31:59 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,715 bytes |
コンパイル時間 | 2,418 ms |
コンパイル使用メモリ | 79,736 KB |
実行使用メモリ | 52,400 KB |
最終ジャッジ日時 | 2024-07-23 10:32:05 |
合計ジャッジ時間 | 5,867 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 54 ms
50,420 KB |
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 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
import java.io.*; import java.util.*; import java.util.function.*; import java.util.stream.*; public class Main { static final int MOD = 1000000007; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); char[] inputs = sc.next().toCharArray(); int length = inputs.length; int[] values = new int[]{0, 1, 2, 4, 5, 10, 20, 25, 50, 100}; int size = values.length; Map<Integer, Integer> idxes = new HashMap<>(); for (int i = 0; i < size; i++) { idxes.put(values[i], i); } int[][] matrix = new int[size][10]; for (int i = 1; i < size; i++) { for (int j = 1; j < 10; j++) { matrix[i][j] = idxes.get(getGCD(values[i] * j, 100)); } } int[][] dp = new int[length][size]; for (int i = 1; i < inputs[0] - '0'; i++) { dp[0][matrix[1][i]]++; } int type = matrix[1][inputs[0] - '0']; for (int i = 1; i < length; i++) { int x = inputs[i] - '0'; for (int j = 1; j < size; j++) { for (int k = 1; k < 10; k++) { dp[i][matrix[j][k]] += dp[i - 1][j]; dp[i][matrix[j][k]] %= MOD; } } for (int j = 1; j < 10; j++) { dp[i][matrix[1][j]]++; } if (type >= 1) { for (int j = 1; j < x; j++) { dp[i][matrix[type][j]]++; } type = matrix[type][x]; } } dp[length - 1][type]++; System.out.println(dp[length - 1][size - 1] % MOD); } static int getGCD(int x, int y) { if (y == 0) { return x; } else { return getGCD(y, x % y); } } } 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(); } } }