結果

問題 No.1105 Many Triplets
ユーザー H3PO4H3PO4
提出日時 2021-10-31 14:17:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,876 KB
最終ジャッジ日時 2024-10-08 20:40:09
合計ジャッジ時間 16,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 452 ms
43,876 KB
testcase_01 AC 455 ms
43,492 KB
testcase_02 AC 457 ms
43,732 KB
testcase_03 AC 452 ms
43,720 KB
testcase_04 AC 454 ms
43,620 KB
testcase_05 AC 450 ms
43,476 KB
testcase_06 AC 456 ms
43,484 KB
testcase_07 AC 468 ms
43,852 KB
testcase_08 AC 455 ms
43,740 KB
testcase_09 AC 458 ms
43,620 KB
testcase_10 AC 472 ms
43,748 KB
testcase_11 AC 464 ms
43,620 KB
testcase_12 AC 465 ms
43,492 KB
testcase_13 AC 456 ms
43,720 KB
testcase_14 AC 452 ms
43,488 KB
testcase_15 AC 462 ms
43,616 KB
testcase_16 AC 463 ms
43,616 KB
testcase_17 AC 457 ms
43,744 KB
testcase_18 AC 456 ms
43,492 KB
testcase_19 AC 458 ms
43,472 KB
testcase_20 AC 457 ms
43,364 KB
testcase_21 AC 457 ms
43,872 KB
testcase_22 AC 452 ms
43,616 KB
testcase_23 AC 460 ms
43,612 KB
testcase_24 AC 458 ms
43,600 KB
testcase_25 AC 462 ms
43,592 KB
testcase_26 AC 451 ms
43,616 KB
testcase_27 AC 464 ms
43,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

MOD = 10 ** 9 + 7


def pow_matrix_mod(x, n, mod=MOD):
    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 = int(input())
X = np.array(list(map(int, input().split())), dtype=object)
A = np.array([[1, 0, -1],
              [-1, 1, 0],
              [0, -1, 1]],
             dtype=object)
ans = X @ pow_matrix_mod(A, N - 1) % MOD
print(*ans)
0