結果
| 問題 | 
                            No.667 Mice's Luck(ネズミ達の運)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-09-08 07:20:58 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 126 bytes | 
| コンパイル時間 | 82 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 10,880 KB | 
| 最終ジャッジ日時 | 2024-11-29 11:46:06 | 
| 合計ジャッジ時間 | 917 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 10 | 
ソースコード
s = input()
l = len(s)
t = s.count("o")
for ss in range(s):
    print(t / l * 100)
    if ss == "o":
        t -= 1
    l -= 1