結果

問題 No.147 試験監督(2)
ユーザー yuustiyuusti
提出日時 2015-02-13 10:14:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 1,925 bytes
コンパイル時間 558 ms
コンパイル使用メモリ 76,488 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-06 00:37:29
合計ジャッジ時間 1,752 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <sstream>
#include <cstring>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <cctype>
#include <tuple>
#include <array>
#include <climits>
#include <bitset>
#include <cassert>

#ifdef _MSC_VER
#include <agents.h>
#endif

#define FOR(i, a, b) for(int i = (a); i < (int)(b); ++i)
#define rep(i, n) FOR(i, 0, n)
#define ALL(v) v.begin(), v.end()
#define REV(v) v.rbegin(), v.rend()
#define MEMSET(v, s) memset(v, s, sizeof(v))
#define UNIQUE(v) (v).erase(unique(ALL(v)), (v).end())
#define MP make_pair
#define MT make_tuple

using namespace std;

typedef long long ll;
typedef long double ld;
typedef pair<int, int> P;

const ll mod = 1e9 + 7;

ll get_mod(string &s, ll m){
	ll x = 0;

	int n = s.size();
	rep(i, n){
		x = x * 10 + s[i] - '0';
		x %= m;
	}
	return x;
}

struct Mat{
	ll x[2][2];
	Mat(){
		rep(i, 2) rep(j, 2) x[i][j] = 0;
	}
};

Mat operator * (const Mat &lhs, const Mat &rhs){
	Mat res;
	rep(i, 2) rep(j, 2) rep(k, 2){
		res.x[i][j] += lhs.x[i][k] * rhs.x[k][j] % mod;
	}
	rep(i, 2) rep(j, 2) res.x[i][j] %= mod;
	return res;
}

ll mod_pow(ll x, ll n){
	ll res = !!x;
	while (n){
		if (n & 1) res = res*x%mod;
		x = x*x%mod;
		n /= 2;
	}
	return res;
}

Mat E;

ll mod_pow(Mat x, ll n){
	Mat res = E;
	while (n){
		if (n & 1) res = res*x;
		x = x*x;
		n /= 2;
	}
	return res.x[0][0];
}

ll fib(ll x){
	Mat mat;
	rep(i, 2) rep(j, 2) if (!(i&&j))mat.x[i][j] = 1;

	return mod_pow(mat, x);
}

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	cout.setf(ios::fixed);
	cout.precision(20);

	const ll mod = 1e9 + 7;

	E.x[0][0] = E.x[1][1] = 1;

	int n;
	cin >> n;

	ll ans = 1;
	rep(i, n){
		ll c;
		string d;
		cin >> c >> d;
		ans *= mod_pow(fib(c + 1), get_mod(d, mod - 1));
		ans %= mod;
	}
	cout << ans % mod << endl;
}
0