結果

問題 No.345 最小チワワ問題
ユーザー bluemegane
提出日時 2018-09-25 10:21:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 109,716 KB
実行使用メモリ 26,812 KB
最終ジャッジ日時 2024-10-01 05:09:03
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 29
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

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

public class Hello
{
    public static void Main()
    {
        var c = new List<int>();
        var w = new List<int>();
        var s = Console.ReadLine().Trim();
        for (int i = 0; i < s.Length; i++)
            if (s[i] == 'c') c.Add(i);
            else if (s[i] == 'w') w.Add(i);
        var ans = new List<int>();
        foreach (var x in c)
        {
            var count = 0;
            foreach (var y in w)
            {
                if (y > x) count++;
                if (count == 2) { ans.Add(y -x + 1); break; }
            }
        }
        Console.WriteLine(ans.Count() == 0? -1:ans.Min());
    }
}
0