結果

問題 No.2008 Super Worker
ユーザー umezoumezo
提出日時 2022-07-22 06:07:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 209,568 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-07-03 12:21:50
合計ジャッジ時間 5,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 3 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 57 ms
9,480 KB
testcase_24 AC 56 ms
9,540 KB
testcase_25 AC 57 ms
9,432 KB
testcase_26 AC 55 ms
9,600 KB
testcase_27 AC 58 ms
9,472 KB
testcase_28 AC 65 ms
9,472 KB
testcase_29 AC 65 ms
9,472 KB
testcase_30 AC 66 ms
9,480 KB
testcase_31 AC 64 ms
9,452 KB
testcase_32 AC 63 ms
9,344 KB
testcase_33 AC 48 ms
9,472 KB
testcase_34 AC 62 ms
9,508 KB
testcase_35 AC 39 ms
9,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=1e9+7;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int n;
  cin>>n;
  vector<ll> A(n),B(n);
  rep(i,n) cin>>A[i];
  rep(i,n) cin>>B[i];
  vector<pair<double,int>> C(n);
  rep(i,n) C[i]={(double)(B[i]-1)/A[i],i};
  sort(ALL(C));
  reverse(ALL(C));
  ll ans=0,now=1;
  rep(i,n){
    int j=C[i].second;
    ans=(ans+A[j]*now%MOD)%MOD;
    now=now*B[j]%MOD;
  }
  cout<<ans<<endl;
  
  return 0;
}
0