結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー kohei2019kohei2019
提出日時 2022-03-08 22:12:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 126 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 76,520 KB
最終ジャッジ日時 2024-07-23 22:01:15
合計ジャッジ時間 3,359 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,560 KB
testcase_01 AC 38 ms
53,504 KB
testcase_02 AC 40 ms
52,120 KB
testcase_03 AC 38 ms
52,940 KB
testcase_04 AC 46 ms
59,164 KB
testcase_05 AC 62 ms
65,632 KB
testcase_06 AC 108 ms
76,520 KB
testcase_07 AC 158 ms
75,836 KB
testcase_08 AC 77 ms
75,836 KB
testcase_09 AC 76 ms
76,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
N = len(S)
cnto = S.count('o')
for i in range(N):
    print(cnto/(N-i)*100)
    if S[i] == 'o':
        cnto -= 1
0