結果

問題 No.2017 Mod7 Parade
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-01-28 02:39:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,041 ms / 2,000 ms
コード長 1,307 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 94,152 KB
最終ジャッジ日時 2024-09-28 09:50:24
合計ジャッジ時間 14,013 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 803 ms
89,928 KB
testcase_04 AC 556 ms
86,144 KB
testcase_05 AC 445 ms
82,744 KB
testcase_06 AC 885 ms
91,720 KB
testcase_07 AC 176 ms
76,640 KB
testcase_08 AC 533 ms
84,928 KB
testcase_09 AC 249 ms
77,132 KB
testcase_10 AC 572 ms
85,248 KB
testcase_11 AC 713 ms
88,576 KB
testcase_12 AC 634 ms
88,012 KB
testcase_13 AC 1,003 ms
93,772 KB
testcase_14 AC 1,010 ms
93,772 KB
testcase_15 AC 999 ms
93,776 KB
testcase_16 AC 1,005 ms
94,032 KB
testcase_17 AC 1,002 ms
93,904 KB
testcase_18 AC 1,041 ms
93,764 KB
testcase_19 AC 174 ms
94,152 KB
testcase_20 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2017

SMALL_MOD = 7
MOD = 10 ** 9 + 7

def main():
    K = int(input())
    dl = []
    for _ in range(K):
        D, L = map(int, input().split())
        dl.append((D, L))
    

    dp = [[0] * SMALL_MOD for _ in range(K + 1)]
    dp[0][0] = 1
    for i in range(K):
        d, l = dl[i]
        pow_10_l = pow(10, l, SMALL_MOD)

        # dをl個並べた時の値計算
        val = 0
        x = d
        length = 1
        while l > 0:
            y = pow(10, length, SMALL_MOD)
            if l % 2 == 1:
                val *= y
                val %= SMALL_MOD
                val += x
                val %= SMALL_MOD
            
            y0 = (x * y) % SMALL_MOD
            x = (y0 + x) % SMALL_MOD
            length *= 2
            l //= 2

        for j in range(SMALL_MOD):
            dp[i + 1][j] += dp[i][j]
            dp[i + 1][j] %= MOD

            new_j = j * pow_10_l
            new_j %= SMALL_MOD
            new_j += val
            new_j %= SMALL_MOD

            dp[i + 1][new_j] += dp[i][j]
            dp[i + 1][new_j] %= MOD

    answer = 0
    for i in range(SMALL_MOD):      
        ans = i * dp[-1][i]
        ans %= MOD
        answer += ans
        answer %= MOD
    print(answer)  




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