結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー mlihua09mlihua09
提出日時 2020-09-01 15:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 156 bytes
コンパイル時間 1,212 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 77,424 KB
最終ジャッジ日時 2023-08-12 05:41:55
合計ジャッジ時間 4,180 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,340 KB
testcase_01 AC 69 ms
71,388 KB
testcase_02 AC 69 ms
71,344 KB
testcase_03 AC 71 ms
71,440 KB
testcase_04 AC 77 ms
75,400 KB
testcase_05 AC 92 ms
76,812 KB
testcase_06 AC 133 ms
77,224 KB
testcase_07 AC 182 ms
77,424 KB
testcase_08 AC 101 ms
77,292 KB
testcase_09 AC 98 ms
77,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


S = input()

x = S.count('o')

N = len(S)

for i in range(N):
    
    print(x * 100 / (N - i))
    
    if S[i] == 'o':
        
        x -= 1
        
0