結果

問題 No.210 探し物はどこですか?
ユーザー te-shte-sh
提出日時 2017-05-12 17:44:28
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 2,873 ms
コンパイル使用メモリ 174,608 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-12 19:14:45
合計ジャッジ時間 5,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 14 ms
6,944 KB
testcase_04 AC 15 ms
6,944 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 16 ms
6,940 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 13 ms
6,944 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 13 ms
6,944 KB
testcase_12 AC 14 ms
6,944 KB
testcase_13 AC 28 ms
6,940 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 27 ms
6,940 KB
testcase_16 AC 28 ms
6,940 KB
testcase_17 AC 26 ms
6,948 KB
testcase_18 AC 24 ms
6,944 KB
testcase_19 AC 24 ms
6,944 KB
testcase_20 AC 23 ms
6,944 KB
testcase_21 AC 23 ms
6,940 KB
testcase_22 AC 24 ms
6,944 KB
testcase_23 AC 34 ms
6,940 KB
testcase_24 AC 35 ms
6,944 KB
testcase_25 AC 35 ms
6,940 KB
testcase_26 AC 35 ms
6,940 KB
testcase_27 AC 36 ms
6,940 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 39 ms
6,940 KB
testcase_34 AC 40 ms
6,940 KB
testcase_35 AC 40 ms
6,940 KB
testcase_36 AC 40 ms
6,944 KB
testcase_37 AC 39 ms
6,940 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 5 ms
6,940 KB
testcase_44 AC 10 ms
6,944 KB
testcase_45 AC 15 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.container; // SList, DList, BinaryHeap

void main()
{
  auto n = readln.chomp.to!size_t;
  auto pi = readln.split.to!(real[]).map!"a / 1000".array;
  auto qi = readln.split.to!(real[]).map!"a / 100".array;

  struct FP { real pq, qm; }
  auto hi = zip(pi, qi).map!(pq => FP(pq[0] * pq[1], 1 - pq[1])).array.heapify!"a.pq < b.pq";

  auto r = real(0);
  foreach (i; 1..100000) {
    auto fp = hi.front;
    r += fp.pq * i;
    hi.replaceFront(FP(fp.pq * fp.qm, fp.qm));
  }

  writefln("%.4f", r);
}
0