結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー はむ吉🐹はむ吉🐹
提出日時 2018-03-23 23:44:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-06-24 23:02:03
合計ジャッジ時間 2,715 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 39 ms
54,016 KB
testcase_04 AC 49 ms
61,824 KB
testcase_05 AC 76 ms
76,416 KB
testcase_06 AC 113 ms
78,976 KB
testcase_07 AC 144 ms
80,256 KB
testcase_08 AC 136 ms
80,128 KB
testcase_09 AC 126 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import collections


def compute_probs(is_safes):
    ctr = collections.Counter(is_safes)
    num_rest_cells = len(is_safes)
    probs = []
    for is_safe in is_safes:
        prob = ctr["o"] / num_rest_cells
        probs.append(prob)
        ctr[is_safe] -= 1
        num_rest_cells -= 1
    return probs


def main():
    probs = compute_probs(input())
    for prob in probs:
        print("{:.12f}".format(prob * 100))


if __name__ == '__main__':
    main()
0