結果

問題 No.2017 Mod7 Parade
ユーザー rlangevinrlangevin
提出日時 2023-04-26 12:21:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 76,448 KB
最終ジャッジ日時 2024-11-15 20:20:24
合計ジャッジ時間 4,053 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,344 KB
testcase_01 AC 36 ms
52,280 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 AC 135 ms
76,320 KB
testcase_04 AC 110 ms
75,904 KB
testcase_05 AC 92 ms
75,828 KB
testcase_06 AC 141 ms
75,784 KB
testcase_07 AC 58 ms
68,004 KB
testcase_08 AC 102 ms
76,112 KB
testcase_09 AC 67 ms
74,120 KB
testcase_10 AC 104 ms
76,448 KB
testcase_11 AC 124 ms
75,992 KB
testcase_12 AC 115 ms
75,700 KB
testcase_13 AC 153 ms
76,008 KB
testcase_14 AC 155 ms
75,844 KB
testcase_15 AC 154 ms
76,000 KB
testcase_16 AC 161 ms
76,028 KB
testcase_17 AC 157 ms
76,092 KB
testcase_18 AC 149 ms
75,984 KB
testcase_19 AC 79 ms
75,928 KB
testcase_20 AC 36 ms
53,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

K = int(readline())
mod = 10 ** 9 + 7
pre = [0] * 7
pre[0] = 1
inv = pow(9, 5, 7)
for i in range(K):
    D, L = map(int, readline().split())
    dp = [0] * 7
    ten = pow(10, L, 7)
    for j in range(7):
        dp[j] += pre[j]
        nex = j * ten + (ten - 1) * inv * D
        nex %= 7
        dp[nex] += pre[j]
        dp[j] %= mod
        dp[nex] %= mod
    dp, pre = pre, dp

ans = 0
for i in range(7):
    ans += i * pre[i]
    ans %= mod
    
print(ans)
0