結果
問題 | No.260 世界のなんとか3 |
ユーザー | 👑 rin204 |
提出日時 | 2022-10-28 19:41:02 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,601 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-07-05 22:55:36 |
合計ジャッジ時間 | 5,076 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
11,008 KB |
testcase_01 | AC | 26 ms
10,752 KB |
testcase_02 | AC | 26 ms
10,752 KB |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 718 ms
11,008 KB |
testcase_10 | TLE | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,184 ms
11,008 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1,741 ms
11,008 KB |
testcase_15 | AC | 473 ms
10,880 KB |
testcase_16 | AC | 1,676 ms
11,008 KB |
testcase_17 | WA | - |
testcase_18 | AC | 1,164 ms
11,008 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,342 ms
11,008 KB |
testcase_25 | AC | 1,397 ms
11,008 KB |
testcase_26 | AC | 1,347 ms
11,136 KB |
testcase_27 | AC | 26 ms
10,880 KB |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
ソースコード
MOD = 10 ** 9 + 7 def solve(S): if not S: return 0 dp = [[0] * 2 for _ in range(24)] for s in range(1, S[0]): if s == 3: dp[s][1] = 1 else: dp[s][0] = 1 eqi = S[0] if S[0] == 3: eqj = 1 else: eqj = 0 for s in S[1:]: ndp = [[0] * 2 for _ in range(24)] for x in range(10): for i in range(24): ni = (i * 10 + x) % 24 for j in range(2): if x == 3: nj = 1 else: nj = j ndp[ni][nj] += dp[i][j] ndp[ni][nj] %= MOD for i in range(1, 10): if i == 3: ndp[i][1] += 1 else: ndp[i][0] += 1 for i in range(s): ni = (eqi * 10 + i) % 24 if i == 3: nj = 1 else: nj = eqj ndp[ni][nj] += 1 eqi *= 10 eqi += s eqi %= 24 if s == 3: eqj = 1 dp = ndp dp[eqi][eqj] += 1 ret = 0 for i in range(24): if i % 8 == 0: continue ret += dp[i][1] if i % 3 == 0: ret += dp[i][0] ret %= MOD return ret A, B = input().split() A = list(map(int, A)) B = list(map(int, B)) i = len(A) - 1 while 1: A[i] -= 1 if A[i] == -1: A[i] = 9 i -= 1 else: break if A[0] == 0: A = A[1:] ans = solve(B) - solve(A) print(ans)