結果
問題 | No.147 試験監督(2) |
ユーザー | yuusti |
提出日時 | 2015-02-13 10:09:32 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,006 bytes |
コンパイル時間 | 672 ms |
コンパイル使用メモリ | 83,224 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 19:42:56 |
合計ジャッジ時間 | 2,293 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
ソースコード
#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 = 1; 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); } ll mod_inv(ll x){ return mod_pow(x, mod - 2); } 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; ll x = fib(c + 1); ll inv = mod_inv(x); ans *= mod_pow(x, get_mod(d, inv)); ans %= mod; } cout << ans % mod << endl; }