結果
問題 | No.315 世界のなんとか3.5 |
ユーザー | mkawa2 |
提出日時 | 2024-09-23 17:35:01 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,184 bytes |
コンパイル時間 | 5,361 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 96,648 KB |
最終ジャッジ日時 | 2024-09-23 17:49:16 |
合計ジャッジ時間 | 46,589 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
60,148 KB |
testcase_01 | AC | 36 ms
52,900 KB |
testcase_02 | AC | 43 ms
61,556 KB |
testcase_03 | AC | 43 ms
61,964 KB |
testcase_04 | AC | 43 ms
60,724 KB |
testcase_05 | AC | 42 ms
60,500 KB |
testcase_06 | AC | 42 ms
61,400 KB |
testcase_07 | AC | 46 ms
61,096 KB |
testcase_08 | AC | 44 ms
60,720 KB |
testcase_09 | AC | 41 ms
60,936 KB |
testcase_10 | AC | 42 ms
61,928 KB |
testcase_11 | AC | 43 ms
60,468 KB |
testcase_12 | AC | 1,076 ms
82,388 KB |
testcase_13 | AC | 1,088 ms
82,800 KB |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 1,101 ms
82,496 KB |
testcase_19 | AC | 1,095 ms
83,040 KB |
testcase_20 | AC | 1,100 ms
82,464 KB |
testcase_21 | AC | 1,085 ms
82,600 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
import sys sys.setrecursionlimit(200005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = -1-(-1 << 31) inf = -1-(-1 << 62) md = 10**9+7 # md = 998244353 def digitdp(aa,eq,k): res=0 dp = [[0]*24 for _ in range(2)] jf = jm = 0 for i, a in enumerate(aa): ndp = [[0]*24 for _ in range(2)] # 未満確定からの遷移 for f in range(2): for m in range(24): pre = dp[f][m]%md if pre == 0: continue for d in range(10): nf=f|(d==3) nm=(m*10+d)%24 ndp[nf][nm]+=pre # ちょうどからの遷移 for d in range(i == 0, a): nf = jf | (d == 3) nm = (jm*10+d)%24 ndp[nf][nm] += 1 # その桁からのスタート if i: for d in range(1, 10): ndp[d==3][d] += 1 # ちょうどの更新 jf|=a==3 jm=(jm*10+a)%24 dp = ndp if i==len(aa)-k: if eq and (jf or jm%3==0) and jm%8==0:res-=1 for f in range(2): for m in range(24): if (f or m%3==0) and m%8==0: res-=dp[f][m] res%=md if eq and (jf or jm%3==0):res+=1 for f in range(2): for m in range(24): if f or m%3==0: res+=dp[f][m] res%=md return res a,b,p=SI().split() aa=list(map(int,a)) bb=list(map(int,b)) k=len(p) ans=digitdp(bb,1,k)-digitdp(aa,0,k) print(ans%md)