結果

問題 No.2017 Mod7 Parade
ユーザー ああいいああいい
提出日時 2022-07-24 15:00:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 832 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 82,812 KB
最終ジャッジ日時 2024-07-06 09:29:02
合計ジャッジ時間 5,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,480 KB
testcase_01 AC 41 ms
53,072 KB
testcase_02 AC 40 ms
52,256 KB
testcase_03 AC 252 ms
82,204 KB
testcase_04 AC 193 ms
80,712 KB
testcase_05 AC 167 ms
79,928 KB
testcase_06 AC 268 ms
82,140 KB
testcase_07 AC 102 ms
76,480 KB
testcase_08 AC 187 ms
80,492 KB
testcase_09 AC 123 ms
77,264 KB
testcase_10 AC 189 ms
80,628 KB
testcase_11 AC 230 ms
81,064 KB
testcase_12 AC 210 ms
80,664 KB
testcase_13 AC 296 ms
82,172 KB
testcase_14 AC 298 ms
82,132 KB
testcase_15 AC 296 ms
82,268 KB
testcase_16 AC 300 ms
82,000 KB
testcase_17 AC 297 ms
82,048 KB
testcase_18 AC 296 ms
81,908 KB
testcase_19 AC 294 ms
82,812 KB
testcase_20 AC 37 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
D = []
L = []
for _ in range(K):
    d,l = map(int,input().split())
    D.append(d)
    L.append(l)
P = 10 ** 9 + 7
inv = pow(9,5,7)
beki = [pow(10,i,7) for i in range(6)]
dp = [[0] * 7 for _ in range(6)]
dp[0][0] = 1
ans = 0

for i in range(K - 1,-1,-1):
    d,l = D[i],L[i]
    nx = [[0] * 7 for _ in range(6)]
    
    for j in range(6):
        for k in range(7):
            u = (j + l) % 6
            tmp = beki[u] - beki[j]
            tmp = (tmp * inv * d + k) % 7
            ans += tmp * dp[j][k] % P
            ans %= P
            nx[j][k] += dp[j][k]
            nx[(j + l) % 6][tmp] += dp[j][k]
    for j in range(6):
        for k in range(7):
            nx[j][k] %= P
    #print(ans)
    dp = nx
print(ans)
t = 0
for i in range(6):
    for j in range(7):
        t += dp[i][j]
#print(t)
        
0