結果

問題 No.210 探し物はどこですか?
ユーザー te-shte-sh
提出日時 2017-05-12 17:45:05
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 956 ms / 2,000 ms
コード長 577 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 172,276 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-12 19:15:23
合計ジャッジ時間 15,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
6,812 KB
testcase_01 AC 225 ms
6,940 KB
testcase_02 AC 244 ms
6,944 KB
testcase_03 AC 871 ms
6,940 KB
testcase_04 AC 119 ms
6,940 KB
testcase_05 AC 135 ms
6,940 KB
testcase_06 AC 835 ms
6,940 KB
testcase_07 AC 127 ms
6,940 KB
testcase_08 AC 106 ms
6,944 KB
testcase_09 AC 107 ms
6,940 KB
testcase_10 AC 108 ms
6,944 KB
testcase_11 AC 106 ms
6,944 KB
testcase_12 AC 107 ms
6,940 KB
testcase_13 AC 232 ms
6,940 KB
testcase_14 AC 218 ms
6,940 KB
testcase_15 AC 216 ms
6,940 KB
testcase_16 AC 231 ms
6,940 KB
testcase_17 AC 220 ms
6,940 KB
testcase_18 AC 195 ms
6,944 KB
testcase_19 AC 190 ms
6,940 KB
testcase_20 AC 190 ms
6,940 KB
testcase_21 AC 192 ms
6,940 KB
testcase_22 AC 193 ms
6,944 KB
testcase_23 AC 295 ms
6,940 KB
testcase_24 AC 289 ms
6,944 KB
testcase_25 AC 288 ms
6,940 KB
testcase_26 AC 290 ms
6,940 KB
testcase_27 AC 294 ms
6,940 KB
testcase_28 AC 247 ms
6,940 KB
testcase_29 AC 252 ms
6,944 KB
testcase_30 AC 267 ms
6,944 KB
testcase_31 AC 250 ms
6,944 KB
testcase_32 AC 252 ms
6,944 KB
testcase_33 AC 322 ms
6,940 KB
testcase_34 AC 322 ms
6,940 KB
testcase_35 AC 320 ms
6,940 KB
testcase_36 AC 323 ms
6,944 KB
testcase_37 AC 320 ms
6,940 KB
testcase_38 AC 279 ms
6,940 KB
testcase_39 AC 277 ms
6,940 KB
testcase_40 AC 272 ms
6,940 KB
testcase_41 AC 275 ms
6,944 KB
testcase_42 AC 275 ms
6,940 KB
testcase_43 AC 32 ms
6,944 KB
testcase_44 AC 76 ms
6,944 KB
testcase_45 AC 956 ms
6,940 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..1000000) {
    auto fp = hi.front;
    r += fp.pq * i;
    hi.replaceFront(FP(fp.pq * fp.qm, fp.qm));
  }

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