結果

問題 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
コンパイル時間 299 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-06-22 07:57:52
合計ジャッジ時間 4,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,692 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 24 ms
10,496 KB
testcase_03 AC 23 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 200 ms
10,624 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