結果

問題 No.147 試験監督(2)
ユーザー rpy3cpprpy3cpp
提出日時 2015-08-08 21:07:48
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,550 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 80,928 KB
最終ジャッジ日時 2024-07-18 06:04:24
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,550 ms
80,768 KB
testcase_01 AC 1,526 ms
80,888 KB
testcase_02 AC 1,505 ms
80,928 KB
testcase_03 AC 66 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def g(c, mod, memo):
    p, q = 1, 1
    i = 0
    while c:
        if c & 1:
            a, b = memo[i]
            tmp = p - q
            p = (a*q + b*tmp) % mod
            q = (a*tmp - b*(tmp - q)) % mod
        c >>= 1
        i += 1
    return p

def preprocess(c, mod):
    a, b = 2, 1
    memo = [(2, 1)]
    while c:
        t = a - b
        t *= t
        a *= a
        a -= t
        a %= mod
        b *= b
        b += t
        b %= mod
        c >>= 1
        memo.append((a, b))
    return memo

def solve():
    mod = 10**9 + 7
    memo = preprocess(10**18, mod)
    N = int(raw_input())
    ans = 1
    for n in range(N):
        c, d = map(int, raw_input().split())
        ans *= pow(g(c, mod, memo), d, mod)
        ans %= mod
    return ans

print(solve())
0