結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー akitsugu777akitsugu777
提出日時 2019-06-28 11:01:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 124 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 10,604 KB
実行使用メモリ 8,024 KB
最終ジャッジ日時 2023-09-14 21:14:33
合計ジャッジ時間 6,587 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,908 KB
testcase_01 AC 15 ms
7,820 KB
testcase_02 AC 15 ms
7,912 KB
testcase_03 AC 15 ms
7,848 KB
testcase_04 AC 42 ms
7,944 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())

for i in range(len(s)):
    o = s.count('o')
    x = s.count('x')
    print(o / (o+x) * 100)
    s.pop(0)
0