結果

問題 No.2017 Mod7 Parade
ユーザー asumo0729asumo0729
提出日時 2022-07-22 21:58:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 88,128 KB
最終ジャッジ日時 2024-07-04 06:16:51
合計ジャッジ時間 5,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
61,720 KB
testcase_01 AC 50 ms
61,992 KB
testcase_02 AC 51 ms
63,052 KB
testcase_03 AC 264 ms
85,604 KB
testcase_04 AC 195 ms
82,772 KB
testcase_05 AC 167 ms
81,412 KB
testcase_06 AC 279 ms
86,516 KB
testcase_07 AC 104 ms
78,500 KB
testcase_08 AC 192 ms
82,668 KB
testcase_09 AC 122 ms
79,360 KB
testcase_10 AC 195 ms
82,656 KB
testcase_11 AC 238 ms
84,528 KB
testcase_12 AC 218 ms
83,584 KB
testcase_13 AC 301 ms
87,960 KB
testcase_14 AC 306 ms
87,836 KB
testcase_15 AC 303 ms
87,692 KB
testcase_16 AC 310 ms
87,772 KB
testcase_17 AC 308 ms
87,676 KB
testcase_18 AC 308 ms
88,128 KB
testcase_19 AC 150 ms
88,016 KB
testcase_20 AC 50 ms
61,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
from collections import defaultdict, deque
import heapq
from heapq import heapify, heappop, _heapify_max, heappush
from bisect import bisect_left, bisect_right
import math
import itertools
import copy

stdin=sys.stdin
#sys.setrecursionlimit(10 ** 7)
## import pypyjit
## pypyjit.set_param('max_unroll_recursion=-1')

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
Yp=lambda:print('Yes')
Np=lambda:print('No')
inf = 1 << 60
inf = float('inf')
mod = 10 ** 9 + 7
#mod = 998244353
eps = 1e-9
sortkey1 = itemgetter(0)
sortkey2 = lambda x: (x[0], x[1])



###############################################################

K = ip()
DL = [lp() for _ in range(K)]
dp = [0 for _ in range(7)]
dp[0] = 1
for (d, l) in DL:
    prev = dp
    dp = [0 for _ in range(7)]
    for i in range(7):
        dp[i] += prev[i]
        dp[i] %= mod

    ten = pow(10, l, 7)
    p, q = divmod(l, 6)
    if q:
        x = int(str(d) * q) % 7
    else:
        x = 0
    x = x * pow(10, 6 * p, 7)
    x %= 7
    for i in range(7):
        j = (i * ten + x) % 7
        dp[j] += prev[i]
        dp[j] %= mod

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