結果

問題 No.342 一番ワロタww
ユーザー AreTrashAreTrash
提出日時 2016-04-22 12:11:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 5,000 ms
コード長 1,264 bytes
コンパイル時間 812 ms
コンパイル使用メモリ 107,136 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-10-15 13:23:00
合計ジャッジ時間 1,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,176 KB
testcase_01 AC 26 ms
18,560 KB
testcase_02 AC 26 ms
18,560 KB
testcase_03 AC 26 ms
18,432 KB
testcase_04 AC 26 ms
18,560 KB
testcase_05 AC 28 ms
18,432 KB
testcase_06 AC 27 ms
18,688 KB
testcase_07 AC 28 ms
18,432 KB
testcase_08 AC 28 ms
18,432 KB
testcase_09 AC 30 ms
18,304 KB
testcase_10 AC 26 ms
18,304 KB
testcase_11 AC 29 ms
18,432 KB
testcase_12 AC 29 ms
18,432 KB
testcase_13 AC 28 ms
18,432 KB
testcase_14 AC 24 ms
18,176 KB
testcase_15 AC 22 ms
18,304 KB
testcase_16 AC 27 ms
18,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.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>();
            if(charList.Count == 0 || !charList.Exists(c => c == constChar)){
                Console.WriteLine();
                return;
            }

            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();
                });
        }
    }
}
0