結果
問題 | No.147 試験監督(2) |
ユーザー | kokoa1046 |
提出日時 | 2017-10-18 09:28:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 754 bytes |
コンパイル時間 | 100 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,504 KB |
最終ジャッジ日時 | 2024-04-29 11:25:22 |
合計ジャッジ時間 | 7,271 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
ソースコード
import sys import math def matmult(A,B): n=len(A) C=[[0 for i in range(n)] for j in range(n)] C[0][0]=(A[0][0]*B[0][0]+A[0][1]*B[1][0])%mo C[0][1]=(A[0][0]*B[0][1]+A[0][1]*B[1][1])%mo C[1][0]=(A[1][0]*B[0][0]+A[1][1]*B[1][0])%mo C[1][1]=(A[1][0]*B[0][1]+A[1][1]*B[1][1])%mo return list(C) def matpow(A,p): n=len(A) A=list(A) R=[[0 for i in range(n)] for j in range(n)] for i in range(n): R[i][i]=1 while p: if p%2: R = matmult(A,R) A=matmult(A,A) p >>= 1 return R def pat(c): A=[[1,1],[1,0]] B=matpow(A,c-1) return (B[0][0]+B[0][1]+B[1][0]+B[1][1])%mo N=int(input()) ret = 1 mo=1000000007 for i in range(N): C,D=map(int,input().strip().split(" ")) if D>mo-1: D %= mo-1 ret = ret * pow(pat(C),D,mo) % mo print(ret)