結果

問題 No.1844 Divisors Sum Sum
ユーザー SSRSSSRS
提出日時 2022-02-18 21:41:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 716 ms / 3,000 ms
コード長 1,214 bytes
コンパイル時間 2,050 ms
コンパイル使用メモリ 203,256 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 08:32:13
合計ジャッジ時間 13,032 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 716 ms
5,248 KB
testcase_01 AC 707 ms
5,376 KB
testcase_02 AC 704 ms
5,376 KB
testcase_03 AC 708 ms
5,376 KB
testcase_04 AC 704 ms
5,376 KB
testcase_05 AC 703 ms
5,376 KB
testcase_06 AC 704 ms
5,376 KB
testcase_07 AC 709 ms
5,376 KB
testcase_08 AC 704 ms
5,376 KB
testcase_09 AC 711 ms
5,376 KB
testcase_10 AC 649 ms
5,376 KB
testcase_11 AC 138 ms
5,376 KB
testcase_12 AC 490 ms
5,376 KB
testcase_13 AC 70 ms
5,376 KB
testcase_14 AC 232 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
array<array<long long, 3>, 3> matmul(array<array<long long, 3>, 3> A, array<array<long long, 3>, 3> B){
	array<array<long long, 3>, 3> ans = {array<long long, 3>{0, 0, 0}, array<long long, 3>{0, 0, 0}, array<long long, 3>{0, 0, 0}};
  for (int i = 0; i < 3; i++){
		for (int j = 0; j < 3; j++){
			for (int k = 0; k < 3; k++){
				ans[i][k] += A[i][j] * B[j][k];
				ans[i][k] %= MOD;
			}
		}
	}
	return ans;
}
array<array<long long, 3>, 3> matexp(array<array<long long, 3>, 3> A, long long b){
	array<array<long long, 3>, 3> ans = {array<long long, 3>{1, 0, 0}, array<long long, 3>{0, 1, 0}, array<long long, 3>{0, 0, 1}};
	while (b > 0){
		if (b % 2 == 1){
			ans = matmul(ans, A);
		}
		A = matmul(A, A);
		b /= 2;
	}
	return ans;
}
int main(){
  int L;
  cin >> L;
  vector<int> P(L), e(L);
  for (int i = 0; i < L; i++){
    cin >> P[i] >> e[i];
  }
  long long ans = 1;
  for (int i = 0; i < L; i++){
    array<array<long long, 3>, 3> A = {array<long long, 3>{P[i], 1, 1}, array<long long, 3>{0, 1, 1}, array<long long, 3>{0, 0, 1}};
    A = matexp(A, e[i] + 1);
    ans *= A[0][2];
    ans %= MOD;
  }
  cout << ans << endl;
}
0