結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー gimgim
提出日時 2018-04-10 14:59:01
言語 Python2
(2.7.18)
結果
TLE  
実行時間 -
コード長 199 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 15,392 KB
最終ジャッジ日時 2024-06-26 20:54:34
合計ジャッジ時間 5,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
11,904 KB
testcase_01 AC 10 ms
6,144 KB
testcase_02 AC 11 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 23 ms
6,400 KB
testcase_05 AC 1,322 ms
6,528 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