結果
| 問題 | 
                            No.667 Mice's Luck(ネズミ達の運)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             gim
                         | 
                    
| 提出日時 | 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 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 6 TLE * 1 -- * 3 | 
ソースコード
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]
            
            
            
        
            
gim