結果

問題 No.2017 Mod7 Parade
ユーザー penguinmanpenguinman
提出日時 2021-07-11 01:01:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 624 ms / 2,000 ms
コード長 687 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 174,392 KB
最終ジャッジ日時 2024-07-04 04:44:43
合計ジャッジ時間 9,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,716 KB
testcase_01 AC 37 ms
53,080 KB
testcase_02 AC 37 ms
53,256 KB
testcase_03 AC 501 ms
153,244 KB
testcase_04 AC 361 ms
127,428 KB
testcase_05 AC 284 ms
114,480 KB
testcase_06 AC 539 ms
160,768 KB
testcase_07 AC 138 ms
87,072 KB
testcase_08 AC 346 ms
124,428 KB
testcase_09 AC 184 ms
94,912 KB
testcase_10 AC 352 ms
124,680 KB
testcase_11 AC 449 ms
143,088 KB
testcase_12 AC 409 ms
135,552 KB
testcase_13 AC 624 ms
173,924 KB
testcase_14 AC 617 ms
174,392 KB
testcase_15 AC 613 ms
173,860 KB
testcase_16 AC 618 ms
173,916 KB
testcase_17 AC 617 ms
173,920 KB
testcase_18 AC 579 ms
174,332 KB
testcase_19 AC 526 ms
174,244 KB
testcase_20 AC 37 ms
52,788 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 j in range(7)] for i in range(K+1)]
dp[K][0][1] = 1
for i in reversed(range(K)):
    mem = pow(10,L[i],7)
    for j in range(7):
        for k in range(7):
            dp[i][j][k] += dp[i+1][j][k]
            dp[i][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
            dp[i][S][T] += dp[i+1][j][k]
            dp[i][S][T] %= mod
ans = 0
for i in range(7):
    for j in range(7):
        ans += dp[0][i][j]*i
        ans %= mod
print(ans)
0