結果
問題 | No.667 Mice's Luck(ネズミ達の運) |
ユーザー | pirorirori_n712 |
提出日時 | 2018-08-07 01:19:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 557 ms / 2,000 ms |
コード長 | 353 bytes |
コンパイル時間 | 773 ms |
コンパイル使用メモリ | 113,776 KB |
実行使用メモリ | 31,312 KB |
最終ジャッジ日時 | 2024-09-19 18:21:11 |
合計ジャッジ時間 | 4,371 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 24 ms
25,760 KB |
testcase_01 | AC | 24 ms
25,132 KB |
testcase_02 | AC | 27 ms
25,840 KB |
testcase_03 | AC | 27 ms
25,456 KB |
testcase_04 | AC | 31 ms
25,632 KB |
testcase_05 | AC | 82 ms
27,588 KB |
testcase_06 | AC | 292 ms
27,604 KB |
testcase_07 | AC | 557 ms
29,780 KB |
testcase_08 | AC | 411 ms
29,780 KB |
testcase_09 | AC | 308 ms
31,312 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; class No667{ static void Main(){ var a=Console.ReadLine().ToCharArray(); var b=(double)a.Count(x=>x=='o'); for(double i=0;i<(double)a.Length;i++){ Console.WriteLine(((b/((double)a.Length-i))*100).ToString("0.00000000000000")); if(a[(int)i]=='o')b--; } } }