結果

問題 No.2017 Mod7 Parade
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-07-30 19:03:47
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 604 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,576 KB
最終ジャッジ日時 2024-07-20 15:20:52
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 457 ms
87,936 KB
testcase_19 AC 447 ms
88,160 KB
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

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)
    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