結果
| 問題 | No.1085 桁和の桁和 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-06-19 23:16:41 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 52 ms / 2,000 ms |
| コード長 | 460 bytes |
| 記録 | |
| コンパイル時間 | 189 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 66,816 KB |
| 最終ジャッジ日時 | 2026-05-06 22:26:27 |
| 合計ジャッジ時間 | 4,190 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 35 |
ソースコード
mod=10**9+7
t=input()
d=int(input())
tmp=0
cnt=0
for c in t:
if c=='?':
cnt+=1
else:
tmp+=int(c)
if d!=0:
if tmp!=0 and tmp%9==0:
tmp=9
else:
tmp%=9
coef=0
for i in range(cnt):
coef+=pow(10,i,mod)
coef%=mod
if tmp==0:
ans=coef
elif tmp==d:
ans=coef+1
else:
ans=coef
print(ans%mod)
if d==0:
if tmp!=0:
print(0)
else:
print(1)