結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,948 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 25 ms
6,944 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 15 ms
6,940 KB
testcase_16 AC 15 ms
6,944 KB
testcase_17 AC 11 ms
6,940 KB
testcase_18 AC 158 ms
6,940 KB
testcase_19 AC 155 ms
6,944 KB
testcase_20 AC 155 ms
6,940 KB
testcase_21 AC 156 ms
6,940 KB
testcase_22 AC 155 ms
6,940 KB
testcase_23 AC 286 ms
6,940 KB
testcase_24 AC 227 ms
6,940 KB
testcase_25 AC 240 ms
6,940 KB
testcase_26 AC 263 ms
6,940 KB
testcase_27 AC 396 ms
6,940 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1,003 ms
6,940 KB
testcase_34 AC 1,034 ms
6,940 KB
testcase_35 AC 945 ms
6,940 KB
testcase_36 AC 1,136 ms
6,940 KB
testcase_37 AC 1,043 ms
6,944 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 1 ms
6,940 KB
testcase_44 AC 1 ms
6,940 KB
testcase_45 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

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;

  auto r = real(0), s = real(1);
  foreach (_; 0..100000) {
    auto i = n.iota.map!(j => pi[j] * qi[j]).maxIndex, p = pi[i], q = qi[i];
    foreach (j; 0..n) {
      if (i == j)
        pi[j] = p * (1 - q) / (1 - p * q);
      else
        pi[j] /= 1 - p * q;
    }

    r += (p * q + 1) * s;
    s *= (1 - p * q);
    if (s < 1e-9) break;
  }

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