結果

問題 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
コンパイル時間 84 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 16,384 KB
最終ジャッジ日時 2024-07-02 04:04:26
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,000 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,368 KB
testcase_03 AC 30 ms
10,368 KB
testcase_04 AC 53 ms
10,496 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