結果
| 問題 |
No.147 試験監督(2)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-08-04 17:54:22 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 1,774 ms / 2,000 ms |
| コード長 | 828 bytes |
| コンパイル時間 | 227 ms |
| コンパイル使用メモリ | 82,680 KB |
| 実行使用メモリ | 79,104 KB |
| 最終ジャッジ日時 | 2024-07-18 01:17:14 |
| 合計ジャッジ時間 | 8,151 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 4 |
ソースコード
def f(c, d, mod, memo):
return pow(g(c, mod, memo), d, mod)
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(input())
ans = 1
for n in range(N):
c, d = map(int, input().split())
ans *= f(c, d, mod, memo)
ans %= mod
return ans
print(solve())