結果

問題 No.147 試験監督(2)
ユーザー commycommy
提出日時 2020-05-01 00:52:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 851 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,328 KB
最終ジャッジ日時 2024-12-21 07:33:30
合計ジャッジ時間 13,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 32 ms
28,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

mod = 1000000007
def matrixmod(matrix):
    for i in range(2):
        for j in range(2):
            matrix[i][j] %= mod
    return matrix

def matrixmul(a, b):
    res = [[0, 0], [0, 0]]
    for i in range(2):
        for j in range(2):
            for k in range(2):
                res[i][j] += a[i][k] * b[k][j]
    return res

def powmatrix(matrix, p):
    if p == 0:
        return [[1, 0], [0, 1]]
    elif p % 2 == 1:
        return matrixmod(matrixmul(matrix, powmatrix(matrix, p - 1)))
    else:
        res = powmatrix(matrix, p / 2)
        return matrixmod(matrixmul(res, res))

matrix = [[1, 1], [1, 0]]
ans = 1

for i in range(n):
    c, d = map(int, input().split())
    res = powmatrix(matrix, c + 1)[0][0]
    d %= (mod - 1)
    if d == 0:
        d = mod - 1
    ans *= pow(res, d, mod)
    ans %= mod
print(ans)
0