結果

問題 No.315 世界のなんとか3.5
ユーザー vwxyzvwxyz
提出日時 2023-02-02 14:35:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 595 ms / 2,000 ms
コード長 2,630 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 126,236 KB
最終ジャッジ日時 2024-07-02 03:42:12
合計ジャッジ時間 13,626 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
89,312 KB
testcase_01 AC 143 ms
89,256 KB
testcase_02 AC 167 ms
89,888 KB
testcase_03 AC 155 ms
90,148 KB
testcase_04 AC 155 ms
90,140 KB
testcase_05 AC 156 ms
89,920 KB
testcase_06 AC 154 ms
90,088 KB
testcase_07 AC 153 ms
90,144 KB
testcase_08 AC 204 ms
90,452 KB
testcase_09 AC 202 ms
90,264 KB
testcase_10 AC 198 ms
90,620 KB
testcase_11 AC 205 ms
90,432 KB
testcase_12 AC 318 ms
99,220 KB
testcase_13 AC 312 ms
98,820 KB
testcase_14 AC 401 ms
106,820 KB
testcase_15 AC 403 ms
106,796 KB
testcase_16 AC 400 ms
107,036 KB
testcase_17 AC 402 ms
106,884 KB
testcase_18 AC 321 ms
98,948 KB
testcase_19 AC 318 ms
99,020 KB
testcase_20 AC 310 ms
98,824 KB
testcase_21 AC 314 ms
99,176 KB
testcase_22 AC 400 ms
107,048 KB
testcase_23 AC 401 ms
106,956 KB
testcase_24 AC 406 ms
106,960 KB
testcase_25 AC 404 ms
106,660 KB
testcase_26 AC 399 ms
106,816 KB
testcase_27 AC 404 ms
106,816 KB
testcase_28 AC 403 ms
106,780 KB
testcase_29 AC 577 ms
126,236 KB
testcase_30 AC 581 ms
125,868 KB
testcase_31 AC 576 ms
125,832 KB
testcase_32 AC 583 ms
125,768 KB
testcase_33 AC 408 ms
109,216 KB
testcase_34 AC 553 ms
125,980 KB
testcase_35 AC 595 ms
125,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

A,B,P=readline().split()
A=list(map(int,list(A)))
B=list(map(int,list(B)))
P=int(P)
mod=10**9+7
def solve(N):
    if len(N)<=6:
        ans=0
        N=int("".join(map(str,N)))
        for n in range(1,N):
            if (n%3==0 or "3" in str(n)) and n%P:
                ans+=1
        return ans
    dp0=[0]*3
    dp1=[0]*3
    for i in range(1,N[0]):
        if i==3:
            dp1[i%3]+=1
        else:
            dp0[i%3]+=1
    s=N[0]
    bl=(N[0]==3)
    for n in N[1:-5]:
        prev0=dp0
        prev1=dp1
        dp0=[0]*3
        dp1=[0]*3
        for p in range(3):
            for i in range(10):
                if i==3:
                    dp1[(p+i)%3]+=prev0[p]
                    dp1[(p+i)%3]+=prev1[p]
                    dp1[(p+i)%3]%=mod
                else:
                    dp0[(p+i)%3]+=prev0[p]
                    dp1[(p+i)%3]+=prev1[p]
                    dp0[(p+i)%3]%=mod
                    dp1[(p+i)%3]%=mod
        for i in range(n):
            if bl|(i==3):
                dp1[(s+i)%3]+=1
            else:
                dp0[(s+i)%3]+=1
        for i in range(1,10):
            if i==3:
                dp1[i%3]+=1
            else:
                dp0[i%3]+=1
        s=(s+n)%3
        bl|=(n==3)
    X=N[-5]*10000+N[-4]*1000+N[-3]*100+N[-2]*10+N[-1]
    ans=0
    for i in range(3):
        for x in range(100000):
            if x%P==0:
                continue
            if (i+x)%3==0 or "3" in str(x):
                ans+=dp0[i]
            ans+=dp1[i]
    for x in range(1,X):
        if x%P==0:
            continue
        if (s+x)%3==0 or "3" in str(x) or bl:
            ans+=1
    for x in range(1,100000):
        if x%P==0:
            continue
        if x%3==0 or "3" in str(x):
            ans+=1
    return ans%mod
ans=(solve(B)-solve(A))%mod
B=[0]*4+B
if (3 in B or sum(B)%3==0) and (B[-5]*10000+B[-4]*1000+B[-3]*100+B[-2]*10+B[-1])%P!=0:
    ans+=1
    ans%=mod
print(ans)
0