結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー trineutrontrineutron
提出日時 2021-03-05 22:49:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 677 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 94,152 KB
最終ジャッジ日時 2024-10-07 03:46:24
合計ジャッジ時間 3,918 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,968 KB
testcase_01 AC 48 ms
62,132 KB
testcase_02 AC 45 ms
61,932 KB
testcase_03 AC 35 ms
52,668 KB
testcase_04 AC 41 ms
60,072 KB
testcase_05 AC 41 ms
60,020 KB
testcase_06 AC 43 ms
60,524 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
60,108 KB
testcase_12 AC 47 ms
63,912 KB
testcase_13 WA -
testcase_14 AC 42 ms
62,352 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 49 ms
64,648 KB
testcase_22 AC 52 ms
64,800 KB
testcase_23 WA -
testcase_24 AC 47 ms
62,812 KB
testcase_25 WA -
testcase_26 AC 50 ms
64,916 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 59 ms
69,512 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 171 ms
93,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

n = input()
l = len(n)
dp0 = [[0] * 100 for i in range(l + 1)]
dp1 = [[0] * 100 for i in range(l + 1)]
for i in range(l):
    d = ord(n[i]) - ord('0')
    for j in range(100):
        dp0[i][j] %= mod
        dp1[i][j] %= mod
        for k in range(1, 10):
            newj = j * k % 100
            dp1[i + 1][newj] += dp1[i][j]
            if k == d:
                dp0[i + 1][newj] += dp0[i][j]
            if k < d:
                dp1[i + 1][newj] += dp0[i][j]
            if j:
                continue
            if i:
                dp1[i + 1][k] += 1
            elif k == d:
                dp0[i + 1][k] += 1
print((dp0[l][0] + dp1[l][0]) % mod)
0