結果

問題 No.2008 Super Worker
ユーザー Nzt3Nzt3
提出日時 2022-07-15 22:37:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
RE  
実行時間 -
コード長 476 bytes
コンパイル時間 2,354 ms
コンパイル使用メモリ 206,304 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-27 19:27:43
合計ジャッジ時間 7,329 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 RE -
testcase_15 AC 2 ms
5,376 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 3 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 54 ms
6,400 KB
testcase_24 AC 53 ms
6,400 KB
testcase_25 AC 55 ms
6,400 KB
testcase_26 AC 54 ms
6,528 KB
testcase_27 AC 54 ms
6,400 KB
testcase_28 AC 61 ms
6,400 KB
testcase_29 AC 62 ms
6,400 KB
testcase_30 AC 61 ms
6,400 KB
testcase_31 AC 60 ms
6,528 KB
testcase_32 AC 61 ms
6,528 KB
testcase_33 TLE -
testcase_34 -- -
testcase_35 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=1e9+7;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<array<long long,2>>A(N);
  for(auto &i:A)cin>>i[0];
  for(auto &i:A)cin>>i[1];
  sort(A.begin(),A.end(),[](array<long long,2>a,array<long long,2>b){
    return a[0]+a[1]*b[0]>=b[0]+b[1]*a[0];
  });
  long long ans=0,x=1;
  for(int i=0;i<N;i++){
    ans=(ans+x*A[i][0])%mod;
    x=x*A[i][1]%mod;
  }
  cout<<ans<<'\n';
}
0