結果

問題 No.1844 Divisors Sum Sum
ユーザー 👑 potato167potato167
提出日時 2021-08-25 04:24:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 438 ms / 3,000 ms
コード長 605 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 193,648 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 03:23:22
合計ジャッジ時間 9,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
5,248 KB
testcase_01 AC 422 ms
5,376 KB
testcase_02 AC 438 ms
5,376 KB
testcase_03 AC 420 ms
5,376 KB
testcase_04 AC 424 ms
5,376 KB
testcase_05 AC 429 ms
5,376 KB
testcase_06 AC 421 ms
5,376 KB
testcase_07 AC 427 ms
5,376 KB
testcase_08 AC 425 ms
5,376 KB
testcase_09 AC 432 ms
5,376 KB
testcase_10 AC 400 ms
5,376 KB
testcase_11 AC 84 ms
5,376 KB
testcase_12 AC 305 ms
5,376 KB
testcase_13 AC 43 ms
5,376 KB
testcase_14 AC 139 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 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 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 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 1 ms
5,376 KB
testcase_29 AC 1 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 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using std::cout;
using std::cin;
using std::endl;
using ll=long long;
const int INF=2100000000;
ll mod=1e9+7;
#define rep(i,a) for (ll i=0;i<a;i++)

//retrun x^{y}
ll my_pow(ll x,ll y){
	if(x==0) return 0;
	if(y==0) return 1;
	if(y%2) return (x*my_pow(x,y-1))%mod;
	return my_pow((x*x)%mod,y/2);
}

//  rainy ~ 雨に打たれて ~
int main() {
	int N;
	cin>>N;
	ll ans=1;
	rep(i,N){
		ll P,e;
		cin>>P>>e;
		ll rev=my_pow(P-1,mod-2);
		ll tmp=my_pow(P,e+1);
		ans*=(rev*((tmp-e-1+(((tmp-P)*rev)%mod))%mod))%mod;
		ans%=mod;
	}
	cout<<(ans+mod)%mod<<endl;
}

0