結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー _araran__araran_
提出日時 2018-04-13 15:47:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,696 KB
最終ジャッジ日時 2024-06-26 21:40:53
合計ジャッジ時間 5,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,696 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 45 ms
10,624 KB
testcase_05 AC 758 ms
10,752 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def a(str):
    print(str, file=sys.stderr)
    
    o_count = str.count("o")
    print(o_count, file=sys.stderr)
    
    x_count = str.count("x")
    print(x_count, file=sys.stderr)
    
    ret = o_count / (o_count + x_count ) * 100
    print(ret)

first = input()

for i in range(len(first)):
    a(first)
    first = first[1:] 
0