結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー takeytakey
提出日時 2018-03-24 13:25:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-06-25 03:07:37
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,008 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 34 ms
11,008 KB
testcase_03 AC 34 ms
11,008 KB
testcase_04 AC 38 ms
11,136 KB
testcase_05 AC 64 ms
11,008 KB
testcase_06 AC 182 ms
11,264 KB
testcase_07 AC 350 ms
11,264 KB
testcase_08 AC 261 ms
11,392 KB
testcase_09 AC 246 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#-*- coding:utf-8 -*-
from decimal import *

if __name__ == "__main__":
	getcontext().prec = 28
	S = input()
	safe = 0
	out  = 0
	for s in S:
		if s == "o":
			safe += 1
		else:
			out += 1
	for i in range(len(S)):
		ans = Decimal(safe/(safe+out))
		print(ans*100)
		if S[i] == "o":
			safe -= 1
		else:
			out -= 1
0