結果
問題 | No.372 It's automatic |
ユーザー | takeya_okino |
提出日時 | 2019-06-22 18:09:33 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 2,640 ms |
コンパイル使用メモリ | 77,796 KB |
実行使用メモリ | 751,940 KB |
最終ジャッジ日時 | 2024-06-07 22:59:56 |
合計ジャッジ時間 | 11,158 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 119 ms
54,080 KB |
testcase_02 | AC | 124 ms
54,128 KB |
testcase_03 | AC | 107 ms
53,060 KB |
testcase_04 | MLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String s = sc.next(); int M = sc.nextInt(); long MOD = (long)Math.pow(10, 9) + 7; int len = s.length(); long[][][] dp = new long[len][M][2]; int first = Integer.parseInt(String.valueOf(s.charAt(0))); if(first == 0) { dp[0][0][0] = 1; } else { dp[0][first % M][1] = 1; dp[0][0][0] = 1; } for(int i = 1; i < len; i++) { int d = Integer.parseInt(String.valueOf(s.charAt(i))); for(int j = 0; j < M; j++) { if(d > 0) dp[i][d % M][1] = (dp[i][d % M][1] + dp[i - 1][j][0]) % MOD; dp[i][j][0] = (dp[i][j][0] + dp[i - 1][j][0]) % MOD; dp[i][(10 * j + d) % M][1] = (dp[i][(10 * j + d) % M][1] + dp[i - 1][j][1]) % MOD; dp[i][(10 * j) % M][1] = (dp[i][(10 * j) % M][1] + dp[i - 1][j][1]) % MOD; } } long ans = 0; long kosuu = 0; for(int i = 0; i < s.length(); i++) { if(s.charAt(i) == '0') kosuu++; } ans = (dp[len - 1][0][1] + kosuu) % MOD; System.out.println(ans); } }