結果
問題 | No.260 世界のなんとか3 |
ユーザー | ukak |
提出日時 | 2017-01-05 08:02:26 |
言語 | Java21 (openjdk 21) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,116 bytes |
コンパイル時間 | 2,319 ms |
コンパイル使用メモリ | 77,876 KB |
実行使用メモリ | 69,044 KB |
最終ジャッジ日時 | 2024-05-14 01:19:51 |
合計ジャッジ時間 | 13,394 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
54,200 KB |
testcase_01 | AC | 122 ms
54,216 KB |
testcase_02 | AC | 127 ms
54,060 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | AC | 269 ms
58,124 KB |
testcase_06 | AC | 233 ms
57,304 KB |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | AC | 331 ms
60,460 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | AC | 355 ms
63,760 KB |
testcase_13 | AC | 228 ms
57,380 KB |
testcase_14 | MLE | - |
testcase_15 | AC | 244 ms
58,372 KB |
testcase_16 | AC | 360 ms
63,816 KB |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | AC | 275 ms
57,628 KB |
testcase_21 | AC | 263 ms
59,968 KB |
testcase_22 | AC | 399 ms
63,760 KB |
testcase_23 | AC | 192 ms
55,236 KB |
testcase_24 | MLE | - |
testcase_25 | AC | 320 ms
63,304 KB |
testcase_26 | MLE | - |
testcase_27 | AC | 126 ms
54,004 KB |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
ソースコード
import java.util.Scanner; public class Main { private static final int MOD = 1_000_000_007; public static void main(String[] args) { try (Scanner in = new Scanner(System.in)) { String A = in.next(); String B = in.next(); int sekaiA = sekai(A.toCharArray(), true); int sekaiB = sekai(B.toCharArray(), false); int ans = sekaiA > sekaiB ? (sekaiB + MOD - sekaiA) : sekaiB - sekaiA; System.out.println(ans); } } private static int sekai(char[] N, boolean ignoreAllTight) { final int n = N.length; // position, tight, mod3, has3, mod8 final int[][][][][] dp = new int[n + 1][2][3][2][8]; dp[0][1][0][0][0] = 1; for (int i = 0; i < n; i++) { for (int j = 0; j < 2; j++) { for (int k = 0; k < 3; k++) { for (int l = 0; l < 2; l++) { for (int m = 0; m < 8; m++) { int lim = j == 1 ? N[i] - '0' : 9; for (int d = 0; d < lim + 1; d++) { int nj = j == 1 && d == lim ? 1 : 0; int nk = (10 * k + d) % 3; int nl = l == 1 || d == 3 ? 1 : 0; int nm = (10 * m + d) % 8; dp[i + 1][nj][nk][nl][nm] += dp[i][j][k][l][m]; dp[i + 1][nj][nk][nl][nm] %= MOD; } } } } } } int sum = 0; for (int j = 0; j < (ignoreAllTight ? 1 : 2); j++) { for (int k = 0; k < 3; k++) { for (int l = 0; l < 2; l++) { for (int m = 0; m < 8; m++) { if ((k == 0 || l == 1) && m != 0) { sum += dp[n][j][k][l][m]; sum %= MOD; } } } } } return sum; } }