結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-08-07 01:02:20
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 316 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 111,340 KB
実行使用メモリ 34,876 KB
最終ジャッジ日時 2024-09-19 18:20:12
合計ジャッジ時間 5,671 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
34,876 KB
testcase_01 AC 25 ms
25,008 KB
testcase_02 AC 26 ms
27,676 KB
testcase_03 AC 26 ms
25,648 KB
testcase_04 AC 41 ms
25,632 KB
testcase_05 AC 1,012 ms
25,772 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class No667{
    static void Main(){
        var a=Console.ReadLine().ToList();
        for(double i=0;i<(double)a.Count;){
            Console.WriteLine((((double)a.Count(x=>x=='o')/((double)a.Count))*100).ToString("0.00000000000000"));
            a.RemoveAt(0);
        }
    }
}
0