結果
問題 | No.1417 100の倍数かつ正整数(2) |
ユーザー | tenten |
提出日時 | 2024-07-23 10:33:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 106 ms / 3,000 ms |
コード長 | 2,715 bytes |
コンパイル時間 | 2,352 ms |
コンパイル使用メモリ | 79,000 KB |
実行使用メモリ | 52,336 KB |
最終ジャッジ日時 | 2024-07-23 10:33:33 |
合計ジャッジ時間 | 6,182 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
50,176 KB |
testcase_01 | AC | 54 ms
50,488 KB |
testcase_02 | AC | 56 ms
50,296 KB |
testcase_03 | AC | 57 ms
50,156 KB |
testcase_04 | AC | 57 ms
50,352 KB |
testcase_05 | AC | 55 ms
50,376 KB |
testcase_06 | AC | 56 ms
50,536 KB |
testcase_07 | AC | 57 ms
50,140 KB |
testcase_08 | AC | 55 ms
50,500 KB |
testcase_09 | AC | 55 ms
50,436 KB |
testcase_10 | AC | 55 ms
50,436 KB |
testcase_11 | AC | 56 ms
50,080 KB |
testcase_12 | AC | 55 ms
50,332 KB |
testcase_13 | AC | 57 ms
50,184 KB |
testcase_14 | AC | 56 ms
50,372 KB |
testcase_15 | AC | 55 ms
50,140 KB |
testcase_16 | AC | 56 ms
50,432 KB |
testcase_17 | AC | 56 ms
50,316 KB |
testcase_18 | AC | 55 ms
50,240 KB |
testcase_19 | AC | 55 ms
50,420 KB |
testcase_20 | AC | 55 ms
50,124 KB |
testcase_21 | AC | 56 ms
50,536 KB |
testcase_22 | AC | 56 ms
50,404 KB |
testcase_23 | AC | 55 ms
50,180 KB |
testcase_24 | AC | 55 ms
50,116 KB |
testcase_25 | AC | 56 ms
50,464 KB |
testcase_26 | AC | 56 ms
50,372 KB |
testcase_27 | AC | 56 ms
50,460 KB |
testcase_28 | AC | 57 ms
50,452 KB |
testcase_29 | AC | 57 ms
50,412 KB |
testcase_30 | AC | 60 ms
50,420 KB |
testcase_31 | AC | 60 ms
50,324 KB |
testcase_32 | AC | 77 ms
51,100 KB |
testcase_33 | AC | 75 ms
51,096 KB |
testcase_34 | AC | 100 ms
51,956 KB |
testcase_35 | AC | 100 ms
52,280 KB |
testcase_36 | AC | 106 ms
51,832 KB |
testcase_37 | AC | 99 ms
52,336 KB |
testcase_38 | AC | 103 ms
52,212 KB |
ソースコード
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(); } } }