結果

問題 No.2017 Mod7 Parade
ユーザー penguinmanpenguinman
提出日時 2021-07-11 01:12:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 412 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 78,400 KB
最終ジャッジ日時 2024-07-04 04:44:50
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,560 KB
testcase_01 AC 40 ms
53,072 KB
testcase_02 AC 38 ms
52,492 KB
testcase_03 AC 340 ms
77,920 KB
testcase_04 AC 251 ms
77,320 KB
testcase_05 AC 204 ms
77,148 KB
testcase_06 AC 364 ms
78,072 KB
testcase_07 AC 112 ms
76,984 KB
testcase_08 AC 237 ms
76,904 KB
testcase_09 AC 137 ms
76,964 KB
testcase_10 AC 237 ms
77,376 KB
testcase_11 AC 304 ms
77,672 KB
testcase_12 AC 278 ms
77,500 KB
testcase_13 AC 406 ms
78,400 KB
testcase_14 AC 412 ms
77,708 KB
testcase_15 AC 411 ms
78,208 KB
testcase_16 AC 410 ms
78,328 KB
testcase_17 AC 411 ms
77,780 KB
testcase_18 AC 387 ms
78,064 KB
testcase_19 AC 326 ms
78,208 KB
testcase_20 AC 36 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
D = [0]*K
L = [0]*K
for i in range(K):
    D[i],L[i] = map(int,input().split())
mod = int(1e9+7)
div = pow(9,5,7)
dp = [[0]*7 for i in range(7)]
dp[0][1] = 1
for i in reversed(range(K)):
    mem = pow(10,L[i],7)
    cp = [[0]*7 for i in range(7)]
    for j in range(7):
        for k in range(7):
            cp[j][k] += dp[j][k]
            cp[j][k] %= mod
            S = (mem*k%7-k)*div%7*D[i]%7+j
            S %= 7
            if S < 0:
                S += 7
            T = mem*k%7
            cp[S][T] += dp[j][k]
            cp[S][T] %= mod
    dp = cp
ans = 0
for i in range(7):
    for j in range(7):
        ans += dp[i][j]*i
        ans %= mod
print(ans)
0