結果

問題 No.2008 Super Worker
ユーザー V_MelvilleV_Melville
提出日時 2022-07-16 00:12:47
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 711 bytes
コンパイル時間 5,305 ms
コンパイル使用メモリ 313,732 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 22:02:24
合計ジャッジ時間 8,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 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,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 4 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 108 ms
6,940 KB
testcase_24 AC 107 ms
6,940 KB
testcase_25 AC 107 ms
6,944 KB
testcase_26 AC 106 ms
6,940 KB
testcase_27 AC 107 ms
6,940 KB
testcase_28 AC 147 ms
6,940 KB
testcase_29 AC 147 ms
6,944 KB
testcase_30 AC 147 ms
6,940 KB
testcase_31 AC 147 ms
6,944 KB
testcase_32 AC 146 ms
6,940 KB
testcase_33 AC 144 ms
6,944 KB
testcase_34 AC 146 ms
6,940 KB
testcase_35 AC 100 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define fi first
#define se second

using std::cin;
using std::cout;
using std::vector;
using ll = long long;
using P = std::pair<ll, ll>;
using mint = modint1000000007;

int main() {
    int n;
    cin >> n;
    
    vector<P> p(n);
    rep(i, n) cin >> p[i].fi;
    rep(i, n) cin >> p[i].se;
    
    sort(p.begin(), p.end(), [&](P l, P r) {
        return r.fi*(l.se-1) > l.fi*(r.se-1);
    });
    
    mint ans, x = 1;
    for (auto [a, b] : p) {
        ans += x*a;
        x *= b;
    }
    
    cout << ans.val() << '\n';
    
    return 0;
}
0