結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー koba-e964koba-e964
提出日時 2021-09-27 13:18:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 76,464 KB
最終ジャッジ日時 2024-07-06 08:56:44
合計ジャッジ時間 2,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,836 KB
testcase_01 AC 32 ms
52,952 KB
testcase_02 AC 33 ms
52,700 KB
testcase_03 AC 33 ms
53,656 KB
testcase_04 AC 40 ms
59,652 KB
testcase_05 AC 59 ms
68,560 KB
testcase_06 AC 99 ms
76,464 KB
testcase_07 AC 151 ms
75,952 KB
testcase_08 AC 71 ms
76,216 KB
testcase_09 AC 71 ms
76,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

s = readline().rstrip()
l = len(s)
k = sum(i == 111 for i in s)

for i in s:
    print(k / l * 100)
    if i == 111:
        k -= 1
    l -= 1
0