結果

問題 No.2017 Mod7 Parade
ユーザー tamatotamato
提出日時 2022-07-22 21:57:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 928 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 82,220 KB
最終ジャッジ日時 2024-07-04 06:13:37
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,072 KB
testcase_01 AC 37 ms
52,772 KB
testcase_02 AC 37 ms
52,612 KB
testcase_03 AC 178 ms
81,396 KB
testcase_04 AC 137 ms
79,772 KB
testcase_05 AC 121 ms
78,016 KB
testcase_06 AC 183 ms
81,516 KB
testcase_07 AC 73 ms
76,392 KB
testcase_08 AC 129 ms
79,064 KB
testcase_09 AC 90 ms
76,976 KB
testcase_10 AC 134 ms
79,148 KB
testcase_11 AC 161 ms
80,764 KB
testcase_12 AC 149 ms
80,192 KB
testcase_13 AC 210 ms
81,184 KB
testcase_14 AC 207 ms
81,456 KB
testcase_15 AC 208 ms
81,264 KB
testcase_16 AC 215 ms
81,432 KB
testcase_17 AC 213 ms
81,420 KB
testcase_18 AC 199 ms
81,152 KB
testcase_19 AC 200 ms
82,220 KB
testcase_20 AC 34 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    DL = []
    for _ in range(N):
        d, l = map(int, input().split())
        DL.append((d, l % 6))

    mod10 = [pow(10, i, 7) for i in range(6)]

    dp = [[0] * 6 for _ in range(7)]
    dp[0][0] = 1
    for i in range(N - 1, -1, -1):
        dp_new = [[0] * 6 for _ in range(7)]
        d, l = DL[i]
        if l:
            dd = int(str(d) * l) % 7
        else:
            dd = 0
        for j in range(7):
            for k in range(6):
                dp_new[j][k] = (dp_new[j][k] + dp[j][k]) % mod
                dp_new[(j + dd * mod10[k]) % 7][(k + l) % 6] = (dp_new[(j + dd * mod10[k]) % 7][(k + l) % 6] + dp[j][k])%mod
        dp = dp_new
    ans = 0
    for j in range(7):
        for k in range(6):
            ans = (ans + (j * dp[j][k]) % mod) % mod
    print(ans)


if __name__ == '__main__':
    main()
0