結果

問題 No.995 タピオカオイシクナーレ
ユーザー H3PO4H3PO4
提出日時 2023-07-15 09:40:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 568 ms / 2,000 ms
コード長 772 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,876 KB
最終ジャッジ日時 2024-09-16 17:55:15
合計ジャッジ時間 17,745 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 493 ms
43,364 KB
testcase_01 AC 511 ms
43,372 KB
testcase_02 AC 515 ms
43,600 KB
testcase_03 AC 526 ms
43,876 KB
testcase_04 AC 515 ms
43,496 KB
testcase_05 AC 512 ms
43,596 KB
testcase_06 AC 494 ms
43,620 KB
testcase_07 AC 489 ms
43,748 KB
testcase_08 AC 486 ms
43,624 KB
testcase_09 AC 498 ms
43,624 KB
testcase_10 AC 494 ms
43,596 KB
testcase_11 AC 497 ms
43,368 KB
testcase_12 AC 510 ms
43,600 KB
testcase_13 AC 495 ms
43,724 KB
testcase_14 AC 498 ms
43,624 KB
testcase_15 AC 496 ms
43,600 KB
testcase_16 AC 537 ms
43,496 KB
testcase_17 AC 550 ms
43,756 KB
testcase_18 AC 546 ms
43,624 KB
testcase_19 AC 568 ms
43,752 KB
testcase_20 AC 544 ms
43,624 KB
testcase_21 AC 542 ms
43,628 KB
testcase_22 AC 551 ms
43,496 KB
testcase_23 AC 544 ms
43,500 KB
testcase_24 AC 544 ms
43,380 KB
testcase_25 AC 562 ms
43,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

input = sys.stdin.buffer.readline

MOD = 10 ** 9 + 7
modinv = lambda a, mod=MOD: pow(a, -1, mod)


def pow_matrix_mod(x, n, mod=MOD):
    x = x.astype(object)
    if not n:
        return np.eye(len(x), dtype=object)
    if n % 2 == 0:
        return pow_matrix_mod(x @ x % mod, n // 2) % mod
    else:
        return x @ pow_matrix_mod(x @ x % mod, (n - 1) // 2) % mod


N, M, K, P, Q = map(int, input().split())
pq = P * modinv(Q) % MOD
matr = np.array([[(1 - pq) % MOD, pq], [pq, (1 - pq) % MOD]], dtype=np.int64)
tea = 0
kitchen = 0
for _ in range(M):
    tea += int(input())
for _ in range(N - M):
    kitchen += int(input())
tea %= MOD
kitchen %= MOD
ans = (np.array([tea, kitchen]) @ pow_matrix_mod(matr, K))[0]
ans %= MOD
print(ans)
0