結果

問題 No.210 探し物はどこですか?
ユーザー nebukuro09nebukuro09
提出日時 2017-06-02 13:41:00
言語 D
(dmd 2.106.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 732 bytes
コンパイル時間 3,120 ms
コンパイル使用メモリ 179,364 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 19:38:48
合計ジャッジ時間 34,818 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 476 ms
6,812 KB
testcase_01 AC 550 ms
6,940 KB
testcase_02 AC 585 ms
6,940 KB
testcase_03 AC 1,613 ms
6,940 KB
testcase_04 AC 389 ms
6,944 KB
testcase_05 AC 418 ms
6,940 KB
testcase_06 TLE -
testcase_07 AC 396 ms
6,940 KB
testcase_08 AC 367 ms
6,940 KB
testcase_09 AC 372 ms
6,944 KB
testcase_10 AC 365 ms
6,940 KB
testcase_11 AC 383 ms
6,940 KB
testcase_12 AC 378 ms
6,940 KB
testcase_13 AC 547 ms
6,940 KB
testcase_14 AC 552 ms
6,940 KB
testcase_15 AC 574 ms
6,940 KB
testcase_16 AC 573 ms
6,940 KB
testcase_17 AC 565 ms
6,940 KB
testcase_18 AC 518 ms
6,940 KB
testcase_19 AC 529 ms
6,940 KB
testcase_20 AC 525 ms
6,944 KB
testcase_21 AC 533 ms
6,940 KB
testcase_22 AC 533 ms
6,944 KB
testcase_23 AC 693 ms
6,944 KB
testcase_24 AC 703 ms
6,940 KB
testcase_25 AC 710 ms
6,940 KB
testcase_26 AC 713 ms
6,940 KB
testcase_27 AC 720 ms
6,940 KB
testcase_28 AC 624 ms
6,944 KB
testcase_29 AC 627 ms
6,944 KB
testcase_30 AC 636 ms
6,940 KB
testcase_31 AC 625 ms
6,944 KB
testcase_32 AC 627 ms
6,944 KB
testcase_33 AC 761 ms
6,940 KB
testcase_34 AC 774 ms
6,940 KB
testcase_35 AC 783 ms
6,944 KB
testcase_36 AC 775 ms
6,944 KB
testcase_37 AC 766 ms
6,940 KB
testcase_38 AC 680 ms
6,944 KB
testcase_39 AC 663 ms
6,944 KB
testcase_40 AC 666 ms
6,940 KB
testcase_41 AC 665 ms
6,940 KB
testcase_42 AC 656 ms
6,940 KB
testcase_43 AC 65 ms
6,940 KB
testcase_44 AC 361 ms
6,944 KB
testcase_45 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;


void main() {
    auto N = readln.chomp.to!int;
    auto P = readln.split.map!(x => x.to!real / 1000).array;
    auto Q = readln.split.map!(x => x.to!real / 100).array;

    auto pq = new BinaryHeap!(Array!(Tuple!(real, int)), "a < b");
    foreach (i; 0..N) pq.insert(tuple(P[i] * Q[i], i));

    real ans = 0;
    
    const int TRY = 10^^6;
    foreach (i; 1..TRY+1) {
        auto t = pq.front;
        pq.popFront;
        ans += i * t[0];
        pq.insert(tuple(t[0] * (1 - Q[t[1]]), t[1]));
    }

    writefln("%.9f", ans);
}
0