結果
問題 | No.260 世界のなんとか3 |
ユーザー | vwxyz |
提出日時 | 2023-02-02 03:18:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,828 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,560 KB |
最終ジャッジ日時 | 2024-07-01 19:52:52 |
合計ジャッジ時間 | 3,693 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
17,408 KB |
testcase_01 | AC | 46 ms
12,032 KB |
testcase_02 | AC | 43 ms
12,032 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
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=readline().split() A=list(map(int,list(A))) B=list(map(int,list(B))) mod=10**9+7 def solve(N): dp0=[0]*24 dp1=[0]*24 for i in range(1,N[0]): if i==3: dp1[i]+=1 else: dp0[i]+=1 s=N[0] bl=(N[0]==3) for n in N[1:]: prev0=dp0 prev1=dp1 dp0=[0]*24 dp1=[0]*24 for p in range(24): for i in range(10): if i==3: dp1[(p*10+i)%24]+=prev0[p] dp1[(p*10+i)%24]+=prev1[p] else: dp0[(p*10+i)%24]+=prev0[p] dp1[(p*10+i)%24]+=prev1[p] for i in range(n): if bl|(i==3): dp1[(s*10+i)%24]+=1 else: dp0[(s*10+i)%24]+=1 for i in range(1,10): if i==3: dp1[i]+=1 else: dp0[i]+=1 s=(s*10+n)%24 bl|=n==3 return (sum(dp0[3::3])+sum(dp1)-sum(dp1[::8]))%mod ans=(solve(B)-solve(A))%mod B+=[0]*2 if 3 in B and sum(B)%3==0 and (B[2]*100+B[1]*10+B[0])%8==0: ans+=1 ans%=mod print(ans)