結果

問題 No.2017 Mod7 Parade
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-30 19:18:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-07-20 15:35:11
合計ジャッジ時間 7,783 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 398 ms
85,888 KB
testcase_04 AC 311 ms
82,688 KB
testcase_05 AC 243 ms
81,408 KB
testcase_06 AC 456 ms
86,784 KB
testcase_07 AC 132 ms
77,312 KB
testcase_08 AC 284 ms
82,048 KB
testcase_09 AC 170 ms
78,336 KB
testcase_10 AC 293 ms
82,048 KB
testcase_11 AC 360 ms
84,992 KB
testcase_12 AC 338 ms
83,840 KB
testcase_13 AC 500 ms
87,936 KB
testcase_14 AC 479 ms
88,576 KB
testcase_15 AC 486 ms
88,320 KB
testcase_16 AC 473 ms
88,064 KB
testcase_17 AC 481 ms
88,064 KB
testcase_18 AC 480 ms
88,064 KB
testcase_19 AC 464 ms
88,080 KB
testcase_20 AC 39 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
dl = []
for i in range(k):
    dl.append(tuple(map(int,input().split())))
dp = [[0] * 7 for _ in range(6)]
dp[0][0] = 1
mod = 10 ** 9 + 7
for d,l in dl[::-1]:
    n_dp = [[0] * 7 for _ in range(6)]
    p = (l%6)
    if p == 0:p = 6
    val = int((str(d) * p)) % 7
    for i in range(6):
        for j in range(7):
            n_dp[i][j] += dp[i][j]
            val2 = (pow(10,i,7)*val) % 7
            n_dp[(i+p)%6][(j+val2)%7] += dp[i][j]
            n_dp[(i+p)%6][(j+val2)%7] %= mod
    dp = n_dp

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