結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー liny_tailliny_tail
提出日時 2020-09-18 13:52:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 110 bytes
コンパイル時間 644 ms
コンパイル使用メモリ 10,404 KB
実行使用メモリ 12,500 KB
最終ジャッジ日時 2023-09-04 08:49:20
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,840 KB
testcase_01 AC 16 ms
7,884 KB
testcase_02 AC 16 ms
7,736 KB
testcase_03 AC 16 ms
7,740 KB
testcase_04 AC 18 ms
7,924 KB
testcase_05 AC 241 ms
7,872 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().strip()

for i in range(len(S)):
  s = S[i:]
  l = len(s)
  o = s.count('o')
  print(o * 100 / l)
0