結果

問題 No.1417 100の倍数かつ正整数(2)
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-14 19:06:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 3,000 ms
コード長 1,354 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 104,020 KB
最終ジャッジ日時 2024-11-06 08:27:30
合計ジャッジ時間 7,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,260 KB
testcase_01 AC 52 ms
65,048 KB
testcase_02 AC 118 ms
77,728 KB
testcase_03 AC 41 ms
57,456 KB
testcase_04 AC 43 ms
57,920 KB
testcase_05 AC 44 ms
60,416 KB
testcase_06 AC 45 ms
61,072 KB
testcase_07 AC 47 ms
61,928 KB
testcase_08 AC 46 ms
61,784 KB
testcase_09 AC 45 ms
62,480 KB
testcase_10 AC 49 ms
63,564 KB
testcase_11 AC 50 ms
62,764 KB
testcase_12 AC 77 ms
76,564 KB
testcase_13 AC 81 ms
76,612 KB
testcase_14 AC 92 ms
76,580 KB
testcase_15 AC 110 ms
77,348 KB
testcase_16 AC 113 ms
77,480 KB
testcase_17 AC 111 ms
77,568 KB
testcase_18 AC 133 ms
77,728 KB
testcase_19 AC 131 ms
77,776 KB
testcase_20 AC 136 ms
77,940 KB
testcase_21 AC 143 ms
77,968 KB
testcase_22 AC 148 ms
78,208 KB
testcase_23 AC 149 ms
78,496 KB
testcase_24 AC 124 ms
77,984 KB
testcase_25 AC 146 ms
77,576 KB
testcase_26 AC 149 ms
78,200 KB
testcase_27 AC 152 ms
78,100 KB
testcase_28 AC 150 ms
77,676 KB
testcase_29 AC 148 ms
78,252 KB
testcase_30 AC 182 ms
80,160 KB
testcase_31 AC 159 ms
80,140 KB
testcase_32 AC 279 ms
83,992 KB
testcase_33 AC 269 ms
90,512 KB
testcase_34 AC 423 ms
102,812 KB
testcase_35 AC 432 ms
103,396 KB
testcase_36 AC 443 ms
104,020 KB
testcase_37 AC 435 ms
103,264 KB
testcase_38 AC 339 ms
102,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7
S = input()
N = len(S)

dp = [[[[[0]*2 for _ in range(2)] for _ in range(3)] for _ in range(3)] for _ in range(N + 1)]
dp[0][0][0][0][0] = 1
for i, s in enumerate(S):
    nd = int(s)
    for j in range(3):
        for k in range(3):
            for l in range(2):
                for m in range(2):
                    for d in range(10):
                        ni = i + 1
                        nj = j
                        nk = k
                        nl = l
                        nm = m
                        if d == 0 and nm == 1:
                            continue
                        if d != 0:
                            nm = 1
                        if d in (2, 6):
                            nj = min(nj + 1, 2)
                        if d in (4, 8):
                            nj = min(nj + 2, 2)
                        if d == 5:
                            nk = min(nk + 1, 2)
                        if nl == 0:
                            if d > nd:
                                continue
                            if d < nd:
                                nl = 1
                        dp[ni][nj][nk][nl][nm] += dp[i][j][k][l][m]
                        dp[ni][nj][nk][nl][nm] %= mod

ans = 0
for i in range(2):
    for j in range(2):
        ans += dp[N][2][2][i][j]
        ans %= mod
print(ans)
0