結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-15 21:46:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 86,200 KB
最終ジャッジ日時 2024-06-08 14:07:35
合計ジャッジ時間 3,227 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,280 KB
testcase_01 AC 41 ms
52,068 KB
testcase_02 AC 41 ms
52,396 KB
testcase_03 AC 42 ms
53,260 KB
testcase_04 AC 49 ms
59,180 KB
testcase_05 AC 66 ms
66,880 KB
testcase_06 AC 111 ms
80,408 KB
testcase_07 AC 171 ms
86,200 KB
testcase_08 AC 85 ms
84,636 KB
testcase_09 AC 82 ms
84,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
n = len(s)
ans = []
x = s.count('o')
for i in range(n):
    p = x/(n-i)
    p *= 100
    ans.append(p)
    if s[i] == 'o':
        x -= 1
print(*ans, sep='\n')
0