結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー liveforever753liveforever753
提出日時 2018-04-09 09:44:08
言語 Python2
(2.7.18)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-06-26 20:33:33
合計ジャッジ時間 2,397 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#!/usr/bin/env python
# coding : utf-8

def retTrapCheck(argStr):
    return retTrap

def main():
    #print "input box num "
    
    box         = raw_input()
    mouseNum    = int(len(box))
    percent     = 0

    safe        = box.count("o")
    trap        = box.count("x")

    
    for i in range(mouseNum):
        percent = float(safe)/float(mouseNum-i) * 100.
        if box[i] == "o":
            safe -= 1
            if safe < 0:
                safe = 0
        else:
            trap -= 1
            if trap < 0:
                trap = 0
        
        #print "box num      >> ",i
        #print "percent      >> ",percent
        print percent

    return

if __name__ == "__main__":
    main()
0