結果

問題 No.1105 Many Triplets
ユーザー 37zigen37zigen
提出日時 2020-07-04 00:25:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,348 KB
最終ジャッジ日時 2024-09-17 05:17:21
合計ジャッジ時間 17,612 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
44,220 KB
testcase_01 AC 514 ms
43,832 KB
testcase_02 AC 518 ms
44,260 KB
testcase_03 AC 520 ms
44,216 KB
testcase_04 AC 511 ms
43,964 KB
testcase_05 AC 521 ms
44,088 KB
testcase_06 AC 502 ms
43,968 KB
testcase_07 AC 509 ms
44,100 KB
testcase_08 AC 516 ms
43,832 KB
testcase_09 AC 516 ms
44,340 KB
testcase_10 AC 514 ms
43,832 KB
testcase_11 AC 510 ms
44,348 KB
testcase_12 AC 510 ms
43,832 KB
testcase_13 AC 504 ms
44,220 KB
testcase_14 AC 504 ms
44,224 KB
testcase_15 AC 506 ms
44,092 KB
testcase_16 AC 512 ms
44,216 KB
testcase_17 AC 501 ms
43,964 KB
testcase_18 AC 517 ms
43,956 KB
testcase_19 AC 524 ms
44,228 KB
testcase_20 AC 523 ms
44,216 KB
testcase_21 AC 519 ms
44,216 KB
testcase_22 AC 518 ms
43,864 KB
testcase_23 AC 516 ms
43,960 KB
testcase_24 AC 501 ms
44,340 KB
testcase_25 AC 497 ms
44,216 KB
testcase_26 AC 499 ms
44,224 KB
testcase_27 AC 494 ms
44,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def mul(a,b):
    c=np.dot(a,b)
    for i in range(len(c)):
        for j in range(len(c[i])):
            c[i][j]%=MOD
    return c

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%2==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