結果

問題 No.667 Mice's Luck(ネズミ達の運)
ユーザー nakamura0422nakamura0422
提出日時 2023-01-11 10:49:34
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 349 bytes
コンパイル時間 15,497 ms
コンパイル使用メモリ 171,476 KB
実行使用メモリ 38,176 KB
最終ジャッジ日時 2024-06-01 15:51:30
合計ジャッジ時間 16,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
33,280 KB
testcase_01 AC 52 ms
36,768 KB
testcase_02 AC 53 ms
29,824 KB
testcase_03 AC 53 ms
30,208 KB
testcase_04 AC 67 ms
30,080 KB
testcase_05 AC 1,094 ms
31,872 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (105 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

static class MicesLuck
{
    static void Main()
    {
	    var s = Console.ReadLine().ToList();
	    
	    foreach (var i in Enumerable.Range(0, s.Count()))
        {
	    	Console.WriteLine((Double)s.Count(x => x == 'o') / s.Count() * 100.0);
	    	s.RemoveAt(0);
        }
   }
}
0