結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー convexineqconvexineq
提出日時 2021-03-11 19:00:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-13 06:42:20
合計ジャッジ時間 3,384 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 37 ms
51,692 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 45 ms
58,368 KB
testcase_05 AC 67 ms
66,176 KB
testcase_06 AC 112 ms
76,160 KB
testcase_07 AC 165 ms
76,544 KB
testcase_08 AC 79 ms
75,988 KB
testcase_09 AC 75 ms
76,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
o = s.count("o")
t = len(s)
for i,si in enumerate(s):
    print(100*o/t)
    if si=="o": o -= 1
    t -= 1
0