結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー gimgim
提出日時 2018-04-10 14:59:01
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 6,504 KB
実行使用メモリ 12,212 KB
最終ジャッジ日時 2023-09-09 03:46:31
合計ジャッジ時間 5,329 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
10,304 KB
testcase_01 AC 12 ms
5,972 KB
testcase_02 AC 12 ms
6,048 KB
testcase_03 AC 11 ms
5,912 KB
testcase_04 AC 26 ms
5,920 KB
testcase_05 AC 1,331 ms
6,352 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S=raw_input()

box=list(S)

for a in range(len(box)):
    safe=box.count('o')
    out=box.count('x')
    kakuritu="{0:.13f}".format(float(safe)/(safe+out)*100)
    print kakuritu
    del box[0]





0