結果
問題 | No.147 試験監督(2) |
ユーザー | yuppe19 😺 |
提出日時 | 2015-09-08 14:08:45 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 81 ms / 2,000 ms |
コード長 | 1,357 bytes |
コンパイル時間 | 449 ms |
コンパイル使用メモリ | 58,972 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 04:58:30 |
合計ジャッジ時間 | 1,352 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
5,248 KB |
testcase_01 | AC | 81 ms
5,376 KB |
testcase_02 | AC | 81 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:47:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 47 | int n; scanf("%d", &n); | ~~~~~^~~~~~~~~~ main.cpp:50:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 50 | i64 c; char d[210]; scanf("%lld%s", &c, d); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <algorithm> #include <cstring> using namespace std; using i64 = long long; using mat = i64[2][2]; const int mod = 1000000007; inline void matmul(mat A, mat B, mat res) { mat R = {{0, 0}, {0, 0}}; R[0][0] = (A[0][0]*B[0][0] + A[0][1]*B[1][0]) % mod; R[0][1] = (A[0][0]*B[0][1] + A[0][1]*B[1][1]) % mod; R[1][0] = (A[1][0]*B[0][0] + A[1][1]*B[1][0]) % mod; R[1][1] = (A[1][0]*B[0][1] + A[1][1]*B[1][1]) % mod; memcpy(res, R, sizeof(R)); } inline void matpow(mat A, i64 n, mat res) { mat R = {{1, 0}, {0, 1}}; for(; n>0; n>>=1) { if(n & 1) { matmul(R, A, R); } matmul(A, A, A); } memcpy(res, R, sizeof(R)); } inline i64 bigint2modint(string bignum, i64 mod) { i64 res = 0; for(char c : bignum) { (res *= 10) += (c - '0'); res %= mod; } return res ? res : mod-1; } inline i64 mod_pow(i64 a, i64 n, i64 mod) { i64 res = 1LL; for(i64 p=a, x=n; x>0; x>>=1) { if(x & 1) { (res *= p) %= mod; } (p *= p) %= mod; } return res; } int main(void) { int n; scanf("%d", &n); i64 res = 1; for(int i=0; i<n; i++) { i64 c; char d[210]; scanf("%lld%s", &c, d); mat ma = {{1, 1}, {1, 0}}; mat powered; matpow(ma, c+1, powered); i64 dd = bigint2modint(d, mod-1); (res *= mod_pow(powered[0][0], dd, mod)) %= mod; } printf("%d\n", int(res)); return 0; }