結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー gorugo30gorugo30
提出日時 2021-02-24 11:33:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 102 bytes
コンパイル時間 1,344 ms
コンパイル使用メモリ 81,548 KB
実行使用メモリ 80,620 KB
最終ジャッジ日時 2023-10-24 18:43:31
合計ジャッジ時間 6,183 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,352 KB
testcase_01 AC 33 ms
53,348 KB
testcase_02 AC 32 ms
53,352 KB
testcase_03 AC 34 ms
53,352 KB
testcase_04 AC 42 ms
60,928 KB
testcase_05 AC 101 ms
75,576 KB
testcase_06 AC 1,056 ms
80,620 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
for i in range(len(S)):
    T = S[i:]
    N = len(S) - i
    print(100 * T.count("o") / N)
0