結果
問題 | No.147 試験監督(2) |
ユーザー | imulan |
提出日時 | 2017-09-21 04:52:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,827 bytes |
コンパイル時間 | 1,799 ms |
コンパイル使用メモリ | 175,380 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-08 09:36:22 |
合計ジャッジ時間 | 3,908 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second #define dbg(x) cout<<#x" = "<<((x))<<endl template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} const ll mod = 1e9+7; using vl = vector<ll>; using mat = vector<vl>; mat mul(const mat &a, const mat &b) { int n = a.size(); mat c(n,vl(n)); rep(i,n)rep(j,n)rep(k,n) (c[i][j]+=(a[i][k]*b[k][j])%mod)%=mod; return c; } vl mul(const mat &a, const vl &b) { int n = a.size(); vl ret(n); rep(i,n)rep(j,n) (ret[i]+=(a[i][j]*b[j])%mod)%=mod; return ret; } mat mat_pow(const mat &a, ll n) { mat p(a); int A = a.size(); mat r(A,vl(A)); rep(i,A) r[i][i]=1; while(n) { if(n&1) r = mul(r,p); p = mul(p,p); n>>=1; } return r; } ll seat(ll x) { mat A(2,vl(2)); A[0][0] = A[0][1] = A[1][0] = 1; mat P = mat_pow(A,x); vl b(2); rep(i,2) b[i] = 1; vl ans = mul(P,b); return ans[0]; } ll mod_pow(ll x, ll n) { ll r = 1; while(n) { if(n&1) (r*=x)%=mod; (x*=x)%=mod; n>>=1; } return r; } ll POW(ll x, string n) { if(x%mod==0) return 0; ll nn = 0; rep(i,n.size()) { nn = 10*nn+n[i]-'0'; nn %= (mod-1); } return mod_pow(x,nn); } ll s() { ll c; string d; cin >>c >>d; return POW(seat(c%mod),d); } int main() { int n; cin >>n; ll ans = 1; rep(i,n) (ans *= s()) %= mod; cout << ans << endl; return 0; }