結果

問題 No.2017 Mod7 Parade
ユーザー lloyzlloyz
提出日時 2022-07-22 23:43:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 81,740 KB
最終ジャッジ日時 2024-07-04 08:37:08
合計ジャッジ時間 9,246 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 556 ms
81,408 KB
testcase_04 AC 387 ms
79,616 KB
testcase_05 AC 319 ms
79,104 KB
testcase_06 AC 580 ms
81,152 KB
testcase_07 AC 148 ms
76,800 KB
testcase_08 AC 372 ms
79,744 KB
testcase_09 AC 189 ms
77,568 KB
testcase_10 AC 372 ms
79,616 KB
testcase_11 AC 481 ms
80,896 KB
testcase_12 AC 426 ms
80,128 KB
testcase_13 AC 663 ms
81,616 KB
testcase_14 AC 642 ms
81,740 KB
testcase_15 AC 668 ms
81,584 KB
testcase_16 AC 676 ms
81,476 KB
testcase_17 AC 662 ms
81,260 KB
testcase_18 AC 657 ms
81,696 KB
testcase_19 AC 158 ms
81,464 KB
testcase_20 AC 36 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

k = int(input())
D = []
for _ in range(k):
    d, l = map(int, input().split())
    r = (pow(10, l, 7 * 9) - 1) // 9 * d % 7
    D.append((r, l))

mod = 10**9 + 7
ans = 0
DP = [0 for _ in range(7)]
for r, l in D:
    NDP = [0 for _ in range(7)]
    ans += r
    ans %= mod
    NDP[r] += 1
    for i in range(7):
        if DP[i]:
            nr = (i * pow(10, l, 7) + r) % 7
            ans += DP[i] * nr
            ans %= mod
            NDP[nr] += DP[i]
            NDP[nr] %= mod
            NDP[i] += DP[i]
            NDP[i] %= mod
    DP = NDP
print(ans)
0