結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー bluemeganebluemegane
提出日時 2018-09-07 18:08:19
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 705 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 1,128 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-05-06 01:43:56
合計ジャッジ時間 5,435 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
18,304 KB
testcase_01 AC 19 ms
17,664 KB
testcase_02 AC 21 ms
18,560 KB
testcase_03 AC 23 ms
18,304 KB
testcase_04 AC 32 ms
18,816 KB
testcase_05 AC 108 ms
19,712 KB
testcase_06 AC 401 ms
22,272 KB
testcase_07 AC 705 ms
23,552 KB
testcase_08 AC 571 ms
23,424 KB
testcase_09 AC 490 ms
19,948 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

public class Hello
{
    public static void Main()
    {
        var s = Console.ReadLine().Trim();
        var sL = s.Length;
        var ok = sL - s.Replace("o", "").Length;
        var ng = sL - ok;
        for (int i = 0; i < sL; i++)
        {
            Console.WriteLine(getA(ok, ng));
            if (s[i] == 'o') ok--;
            else ng--;
        }
    }
    public static double getA(int a, int b) => (double)a / (a + b) * 100.0;
}
0