結果

問題 No.2008 Super Worker
ユーザー Yukino DX.Yukino DX.
提出日時 2024-09-03 10:23:52
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 17,044 ms
コンパイル使用メモリ 399,944 KB
実行使用メモリ 12,208 KB
最終ジャッジ日時 2024-09-03 10:24:44
合計ジャッジ時間 16,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,812 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,944 KB
testcase_23 AC 43 ms
10,880 KB
testcase_24 AC 51 ms
11,008 KB
testcase_25 AC 44 ms
11,008 KB
testcase_26 AC 44 ms
11,008 KB
testcase_27 AC 44 ms
10,944 KB
testcase_28 AC 47 ms
12,108 KB
testcase_29 AC 48 ms
12,112 KB
testcase_30 AC 49 ms
12,132 KB
testcase_31 AC 48 ms
12,092 KB
testcase_32 AC 48 ms
12,208 KB
testcase_33 AC 25 ms
11,264 KB
testcase_34 AC 49 ms
12,160 KB
testcase_35 AC 19 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
        n:usize,
        a:[usize;n],
        b:[usize;n],
    }

    let mut c = (0..n)
        .map(|i| ((b[i] - 1) as f64 / a[i] as f64, i))
        .collect::<Vec<_>>();
    c.sort_by(|x, y| y.0.partial_cmp(&x.0).unwrap());

    let mut ans = 0;
    let mut level = 1;
    for &(_, id) in c.iter() {
        ans += level * a[id];
        ans %= MOD;
        level *= b[id];
        level %= MOD;
    }

    println!("{}", ans);
}

const MOD: usize = 1000000007;
0