結果

問題 No.2017 Mod7 Parade
ユーザー ntudantuda
提出日時 2022-08-11 15:43:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 87,348 KB
最終ジャッジ日時 2024-09-21 22:15:01
合計ジャッジ時間 6,391 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,440 KB
testcase_01 AC 34 ms
53,036 KB
testcase_02 AC 35 ms
53,064 KB
testcase_03 AC 237 ms
84,912 KB
testcase_04 AC 188 ms
81,884 KB
testcase_05 AC 159 ms
80,444 KB
testcase_06 AC 256 ms
85,792 KB
testcase_07 AC 96 ms
77,652 KB
testcase_08 AC 180 ms
81,488 KB
testcase_09 AC 116 ms
78,812 KB
testcase_10 AC 175 ms
81,756 KB
testcase_11 AC 216 ms
83,840 KB
testcase_12 AC 202 ms
83,168 KB
testcase_13 AC 287 ms
87,160 KB
testcase_14 AC 283 ms
86,832 KB
testcase_15 AC 283 ms
87,192 KB
testcase_16 AC 292 ms
87,184 KB
testcase_17 AC 287 ms
87,304 KB
testcase_18 AC 280 ms
86,948 KB
testcase_19 AC 284 ms
87,348 KB
testcase_20 AC 37 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
K = int(input())
DL = [list(map(int, input().split())) for _ in range(K)]

A = [5, 1, 3, 2, 6, 4]  # 桁が上がるときにかける数
B = [0, 1, 4, 6, 5, 2]  # xxxxの個数を計算する時にかける数

dp1 = [[0] * 7 for _ in range(6)]
# dp[i][j]:= 桁数i%6、数%7 の個数
dp1[0][0] = 1

for d, l in reversed(DL):
    dp2 = [[0] * 7 for _ in range(6)]
    add = (d * B[l % 6]) % 7
    for i in range(6):
        for j in range(7):
            dp2[(i + l) % 6][(j + add * A[(i + 1) % 6]) % 7] += dp1[i][j]
            dp2[(i + l) % 6][(j + add * A[(i + 1) % 6]) % 7] %= MOD
            dp2[i][j] += dp1[i][j]
            dp2[i][j] %= MOD
    dp1 = dp2

ans = 0
for i in range(6):
    for j in range(7):
        ans += dp1[i][j] * j
        ans %= MOD
print(ans)
0