結果

問題 No.1105 Many Triplets
ユーザー 37zigen37zigen
提出日時 2020-07-04 04:55:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,960 KB
最終ジャッジ日時 2024-09-17 10:15:00
合計ジャッジ時間 15,339 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
43,944 KB
testcase_01 AC 447 ms
43,572 KB
testcase_02 AC 453 ms
43,960 KB
testcase_03 AC 441 ms
43,832 KB
testcase_04 AC 448 ms
43,708 KB
testcase_05 AC 447 ms
43,708 KB
testcase_06 AC 450 ms
43,940 KB
testcase_07 AC 468 ms
43,684 KB
testcase_08 AC 460 ms
43,560 KB
testcase_09 AC 459 ms
43,812 KB
testcase_10 AC 456 ms
43,572 KB
testcase_11 AC 457 ms
43,708 KB
testcase_12 AC 451 ms
43,576 KB
testcase_13 AC 439 ms
43,556 KB
testcase_14 AC 443 ms
43,676 KB
testcase_15 AC 448 ms
43,832 KB
testcase_16 AC 447 ms
43,584 KB
testcase_17 AC 449 ms
43,832 KB
testcase_18 AC 451 ms
43,840 KB
testcase_19 AC 458 ms
43,580 KB
testcase_20 AC 441 ms
43,832 KB
testcase_21 AC 442 ms
43,708 KB
testcase_22 AC 439 ms
43,816 KB
testcase_23 AC 439 ms
43,700 KB
testcase_24 AC 439 ms
43,576 KB
testcase_25 AC 442 ms
43,580 KB
testcase_26 AC 442 ms
43,580 KB
testcase_27 AC 446 ms
43,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
MOD=10**9+7

def mul(a,b):
    return a@b%MOD

N=int(input())
A,B,C=map(int,input().split())

a=np.array([[1,-1,0],[0,1,-1],[-1,0,1]],dtype=np.int64)
vec=np.array([[A],[B],[C]],dtype=np.int64)
mat=np.eye(3,dtype=np.int64)
N=N-1

while N>0:
    if N&1:
        mat=mul(mat, a)
    a=mul(a,a)
    N//=2
vec=mul(mat,vec)
print(vec[0][0],vec[1][0],vec[2][0])
0