結果
問題 | No.319 happy b1rthday 2 me |
ユーザー | takeya_okino |
提出日時 | 2019-07-02 20:29:28 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,807 bytes |
コンパイル時間 | 2,352 ms |
コンパイル使用メモリ | 77,808 KB |
実行使用メモリ | 58,180 KB |
最終ジャッジ日時 | 2024-09-13 14:35:35 |
合計ジャッジ時間 | 7,922 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long n = sc.nextLong(); String A = sc.next(); String B = sc.next(); long ans = 0; long t = 0; for(int i = 1; i < A.length(); i++) { if((A.charAt(i) == '2') && (A.charAt(i - 1) == '1')) t++; } ans = (func(B) - func(A)) + t + (func2(B) - func2(A)); System.out.println(ans); } public static long func(String X) { int len = X.length(); long[][][][] dp = new long[len][8][10][2]; int first = Integer.parseInt(String.valueOf(X.charAt(0))); for(int i = 0; i < first; i++) { dp[0][0][i][1] = 1; } dp[0][0][first][0] = 1; for(int i = 1; i < len; i++) { int d = Integer.parseInt(String.valueOf(X.charAt(i))); for(int j = 0; j < 8; j++) { for(int l = 0; l <= d; l++) { if(l == d) { if(l == 2) { dp[i][j + 1][l][0] += dp[i - 1][j][1][0]; } else { dp[i][j][l][0] += dp[i - 1][j][1][0]; } } else { if(l == 2) { dp[i][j + 1][l][1] += dp[i - 1][j][1][0]; } else { dp[i][j][l][1] += dp[i - 1][j][1][0]; } } } for(int l = 0; l <= 9; l++) { if(l == 2) { dp[i][j + 1][l][1] += dp[i - 1][j][1][1]; } else { dp[i][j][l][1] += dp[i - 1][j][1][1]; } } for(int k = 0; k <= 9; k++) { if(k != 1) { for(int l = 0; l <= d; l++) { if(l == d) { dp[i][j][l][0] += dp[i - 1][j][k][0]; } else { dp[i][j][l][1] += dp[i - 1][j][k][0]; } } for(int l = 0; l <= 9; l++) { dp[i][j][l][1] += dp[i - 1][j][k][1]; } } } } } long ret = 0; for(int j = 1; j < 8; j++) { for(int k = 0; k <= 9; k++) { for(int l = 0; l < 2; l++) { ret += dp[len - 1][j][k][l]; } } } return ret; } public static long func2(String X) { int len = X.length(); long ret = 0; for(int i = 1; i < len; i++) { if(i == 1) { ret++; } else { ret += ((long)Math.pow(10, i - 2)); } } int first = Integer.parseInt(String.valueOf(X.charAt(0))); if(first == 2) { int last = Integer.parseInt(String.valueOf(X.charAt(len - 1))); long t = Long.parseLong(X.substring(1, len - 1)); if(last < 2) { ret += t; } else { ret += (t + 1); } } if(first > 2) { ret += ((long)Math.pow(10, len - 2)); } if(X.equals("1")) { ret = 0; } else { if(len == 1) ret = 1; } return ret; } }