結果

問題 No.1844 Divisors Sum Sum
ユーザー 蜜蜂
提出日時 2022-02-18 21:53:34
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 108 ms / 3,000 ms
コード長 1,186 bytes
コンパイル時間 3,183 ms
コンパイル使用メモリ 229,884 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-29 08:47:37
合計ジャッジ時間 6,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

//g++ 1.cpp -std=c++14 -O2 -I .
#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

using ll = long long;
using ld = long double;

using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vld = vector<ld>;
using vvld = vector<vld>;
using vst = vector<string>;
using vvst = vector<vst>;

#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define pq_big(T) priority_queue<T,vector<T>,less<T>>
#define pq_small(T) priority_queue<T,vector<T>,greater<T>>
#define all(a) a.begin(),a.end()
#define rep(i,start,end) for(ll i=start;i<(ll)(end);i++)
#define per(i,start,end) for(ll i=start;i>=(ll)(end);i--)
#define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end())

constexpr ll mod = 1e9+7;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int l;
  cin>>l;

  ll ans=1;
  rep(i,0,l){
    ll p,e;
    cin>>p>>e;

    ll now=0;
    now+=pow_mod(p,e+1,mod)-1;
    now*=pow_mod(p-1,mod-2,mod);
    now%=mod;
    now*=p;
    now-=e+1;
    now=now%mod+mod;
    now*=pow_mod(p-1,mod-2,mod);
    now%=mod;

    ans*=now;
    ans%=mod;
  }

  cout<<ans<<endl;
}
0