結果

問題 No.1407 Kindness
ユーザー donutholedonuthole
提出日時 2021-02-27 14:11:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 1,313 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 89,772 KB
最終ジャッジ日時 2024-10-02 17:27:36
合計ジャッジ時間 7,068 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
86,288 KB
testcase_01 AC 127 ms
86,288 KB
testcase_02 AC 126 ms
86,592 KB
testcase_03 AC 125 ms
86,612 KB
testcase_04 AC 128 ms
86,812 KB
testcase_05 AC 127 ms
86,704 KB
testcase_06 AC 125 ms
86,736 KB
testcase_07 AC 125 ms
86,656 KB
testcase_08 AC 125 ms
86,740 KB
testcase_09 AC 123 ms
86,756 KB
testcase_10 AC 127 ms
86,564 KB
testcase_11 AC 125 ms
86,576 KB
testcase_12 AC 156 ms
89,620 KB
testcase_13 AC 142 ms
89,432 KB
testcase_14 AC 143 ms
89,720 KB
testcase_15 AC 154 ms
89,420 KB
testcase_16 AC 147 ms
89,204 KB
testcase_17 AC 143 ms
89,540 KB
testcase_18 AC 146 ms
89,764 KB
testcase_19 AC 153 ms
89,772 KB
testcase_20 AC 151 ms
89,164 KB
testcase_21 AC 140 ms
89,324 KB
testcase_22 AC 138 ms
89,488 KB
testcase_23 AC 150 ms
89,092 KB
testcase_24 AC 159 ms
89,384 KB
testcase_25 AC 143 ms
89,480 KB
testcase_26 AC 147 ms
89,624 KB
testcase_27 AC 140 ms
89,176 KB
testcase_28 AC 156 ms
89,104 KB
testcase_29 AC 137 ms
89,276 KB
testcase_30 AC 156 ms
89,504 KB
testcase_31 AC 147 ms
89,236 KB
testcase_32 AC 147 ms
89,592 KB
testcase_33 AC 139 ms
89,384 KB
testcase_34 AC 143 ms
89,172 KB
testcase_35 AC 138 ms
89,344 KB
testcase_36 AC 136 ms
89,140 KB
testcase_37 AC 150 ms
89,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import collections
import bisect
import itertools
import decimal
import heapq


# sys.setrecursionlimit(10**6+1)
INF = 1 << 62
MOD = 10 ** 9 + 7
# MOD = 998244353


def ni(): return int(sys.stdin.buffer.readline())
def ns(): return map(int, sys.stdin.buffer.readline().split())
def na(): return list(map(int, sys.stdin.buffer.readline().split()))
def na1(): return list(map(lambda x: int(x)-1, sys.stdin.buffer.readline().split()))
def nall(): return list(map(int, sys.stdin.buffer.read().split()))
def flush(): return sys.stdout.flush()


def nic(): return int(sys.stdin.readline())
def nsc(): return map(int, sys.stdin.readline().split())
def nac(): return list(map(int, sys.stdin.readline().split()))
def na1c(): return list(map(lambda x: int(x)-1, sys.stdin.readline().split()))


# ===CODE==
def main():
    s = input()
    l = len(s)
    dpT,  dpF = 0, 1

    for i in range(l):
        keta = int(s[i])
        ndpT, ndpF = 0, 0
        for j in range(10):
            ndpT += dpT*j
            if j < keta:
                ndpT += dpF*j
            elif j == keta:
                ndpF += dpF*j
            if i != 0:
                ndpT += j

        ndpT %= MOD
        ndpF %= MOD
        dpT, dpF = ndpT, ndpF
    print((dpT+dpF) % MOD)


if __name__ == '__main__':
    main()
0