結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー gimgim
提出日時 2018-04-10 15:09:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-26 20:54:36
合計ジャッジ時間 1,508 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 10 ms
6,144 KB
testcase_03 AC 11 ms
6,272 KB
testcase_04 AC 12 ms
6,272 KB
testcase_05 AC 30 ms
6,528 KB
testcase_06 AC 92 ms
7,936 KB
testcase_07 AC 179 ms
9,472 KB
testcase_08 AC 137 ms
9,600 KB
testcase_09 AC 135 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=raw_input()

box=len(S)
safe=S.count('o')
out=S.count('x')

for a in range(box):
    kakuritu="{0:.13f}".format(float(safe)/(safe+out)*100)
    print kakuritu
    if S[a]=='o':
        safe-=1
    else:
        out-=1



0