結果
問題 | No.1085 桁和の桁和 |
ユーザー | vwxyz |
提出日時 | 2021-08-12 00:00:17 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 353 ms / 2,000 ms |
コード長 | 1,275 bytes |
コンパイル時間 | 242 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 91,028 KB |
最終ジャッジ日時 | 2024-09-25 10:07:43 |
合計ジャッジ時間 | 10,042 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 149 ms
89,600 KB |
testcase_01 | AC | 145 ms
89,600 KB |
testcase_02 | AC | 148 ms
89,728 KB |
testcase_03 | AC | 148 ms
90,760 KB |
testcase_04 | AC | 147 ms
89,728 KB |
testcase_05 | AC | 145 ms
89,956 KB |
testcase_06 | AC | 144 ms
89,600 KB |
testcase_07 | AC | 143 ms
89,728 KB |
testcase_08 | AC | 146 ms
89,800 KB |
testcase_09 | AC | 145 ms
89,508 KB |
testcase_10 | AC | 145 ms
89,728 KB |
testcase_11 | AC | 148 ms
90,368 KB |
testcase_12 | AC | 149 ms
90,624 KB |
testcase_13 | AC | 176 ms
90,368 KB |
testcase_14 | AC | 233 ms
90,496 KB |
testcase_15 | AC | 326 ms
90,752 KB |
testcase_16 | AC | 316 ms
90,752 KB |
testcase_17 | AC | 228 ms
90,880 KB |
testcase_18 | AC | 194 ms
90,624 KB |
testcase_19 | AC | 309 ms
90,624 KB |
testcase_20 | AC | 148 ms
89,728 KB |
testcase_21 | AC | 257 ms
90,624 KB |
testcase_22 | AC | 305 ms
90,880 KB |
testcase_23 | AC | 170 ms
90,624 KB |
testcase_24 | AC | 159 ms
90,752 KB |
testcase_25 | AC | 248 ms
90,624 KB |
testcase_26 | AC | 337 ms
90,752 KB |
testcase_27 | AC | 296 ms
90,624 KB |
testcase_28 | AC | 353 ms
90,624 KB |
testcase_29 | AC | 263 ms
90,724 KB |
testcase_30 | AC | 256 ms
90,936 KB |
testcase_31 | AC | 326 ms
90,496 KB |
testcase_32 | AC | 270 ms
91,028 KB |
testcase_33 | AC | 258 ms
91,008 KB |
testcase_34 | AC | 261 ms
91,008 KB |
testcase_35 | AC | 261 ms
90,876 KB |
testcase_36 | AC | 261 ms
90,752 KB |
testcase_37 | AC | 259 ms
91,008 KB |
testcase_38 | AC | 259 ms
90,624 KB |
ソースコード
import bisect import copy import decimal import fractions import functools import heapq import itertools import math import random import sys 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 S=readline().rstrip() D=int(readline()) if D==0: for s in S: if not s in "0?": ans=0 break else: ans=1 else: D%=9 mod=10**9+7 dp=[0]*9 dp[0]=1 for s in S[::-1]: prev=dp dp=[0]*9 for i in range(9): for j in range(10): if s=="?" or int(s)==j: dp[(i+j)%9]+=prev[i] dp[(i+j)%9]%=mod ans=dp[D] if D==0: for s in S: if not s in "0?": break else: ans-=1 ans%=mod print(ans)