結果
問題 | No.1085 桁和の桁和 |
ユーザー |
![]() |
提出日時 | 2020-06-21 01:28:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 251 ms / 2,000 ms |
コード長 | 385 bytes |
コンパイル時間 | 590 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 76,544 KB |
最終ジャッジ日時 | 2024-11-06 17:44:07 |
合計ジャッジ時間 | 6,444 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 35 |
ソースコード
T = input()D = int(input())m = 1000000007def update(t, nt, v):for i in range(10):ni = i + vif ni > 9:ni -= 9nt[ni] += t[i]nt[ni] %= mt = [0] * 10t[0] = 1for c in T:nt = [0] * 10if c != '?':update(t, nt, int(c))else:for i in range(10):update(t, nt, i)t = ntprint(t[D])