結果

問題 No.2017 Mod7 Parade
ユーザー asumo0729asumo0729
提出日時 2022-07-27 22:59:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 87,488 KB
最終ジャッジ日時 2024-07-17 12:24:34
合計ジャッジ時間 7,477 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,204 KB
testcase_01 AC 38 ms
52,704 KB
testcase_02 AC 37 ms
53,064 KB
testcase_03 AC 328 ms
84,928 KB
testcase_04 AC 248 ms
82,288 KB
testcase_05 AC 204 ms
80,780 KB
testcase_06 AC 345 ms
85,752 KB
testcase_07 AC 129 ms
77,896 KB
testcase_08 AC 238 ms
82,168 KB
testcase_09 AC 146 ms
78,500 KB
testcase_10 AC 236 ms
82,252 KB
testcase_11 AC 298 ms
83,772 KB
testcase_12 AC 297 ms
82,908 KB
testcase_13 AC 420 ms
87,084 KB
testcase_14 AC 386 ms
87,216 KB
testcase_15 AC 387 ms
86,952 KB
testcase_16 AC 424 ms
87,488 KB
testcase_17 AC 387 ms
86,948 KB
testcase_18 AC 384 ms
87,136 KB
testcase_19 AC 392 ms
87,136 KB
testcase_20 AC 37 ms
53,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

K = int(input())
dp = [[0 for _ in range(7)] for _ in range(6)]
dp[0][0] = 1
mod = 10 ** 9 + 7
mod7 = [1,3,2,6,4,5]
DL = [list(map(int, input().split())) for _ in range(K)]
for i in range(K):
    D, L = DL[-1 - i]
    newdp = [[0 for _ in range(7)] for _ in range(6)]
    for j in range(6):
        for k in range(7):
            newdp[j][k] += dp[j][k]
    for j in range(6):
        add = 0
        for k in range(L % 6):
            add = (add + mod7[(j + k) % 6] * D) % 7
        for k in range(7):
            newdp[(j + L) % 6][(k + add) % 7] += dp[j][k]
            newdp[(j + L) % 6][(k + add) % 7] %= mod
    dp = newdp

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

print(ans)
exit()
0