結果
問題 | No.342 一番ワロタww |
ユーザー | AreTrash |
提出日時 | 2016-04-22 11:55:06 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,111 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 112,084 KB |
実行使用メモリ | 27,056 KB |
最終ジャッジ日時 | 2024-10-04 14:40:36 |
合計ジャッジ時間 | 2,183 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 26 ms
26,740 KB |
testcase_02 | AC | 27 ms
24,716 KB |
testcase_03 | AC | 25 ms
24,696 KB |
testcase_04 | AC | 26 ms
24,752 KB |
testcase_05 | AC | 25 ms
24,620 KB |
testcase_06 | AC | 25 ms
24,884 KB |
testcase_07 | AC | 27 ms
26,880 KB |
testcase_08 | AC | 27 ms
24,716 KB |
testcase_09 | AC | 28 ms
27,016 KB |
testcase_10 | AC | 26 ms
24,716 KB |
testcase_11 | AC | 27 ms
24,964 KB |
testcase_12 | AC | 26 ms
25,004 KB |
testcase_13 | AC | 26 ms
24,832 KB |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | AC | 25 ms
24,500 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.Collections.Generic; using System.Linq; using System.Text; namespace No342_1{ public class Program{ public static void Main(string[] args){ const char constChar = 'w'; var charList = Console.ReadLine().SkipWhile(c => c == constChar).ToList(); var strList = new List<string>(); var sb = new StringBuilder(); sb.Append(charList[0]); for(var i = 1; i < charList.Count; i++){ if(charList[i - 1] == constChar && charList[i] != constChar){ strList.Add(sb.ToString()); sb.Clear(); } sb.Append(charList[i]); } strList.Add(sb.ToString()); Func<string, int> charCount = s => s.Count(c => c == constChar); strList.Where(s => charCount(s) == strList.Max(charCount)).ToList() .ForEach(s => { s.TakeWhile(c => c != constChar).ToList().ForEach(Console.Write); Console.WriteLine(); }); } } }