結果

問題 No.345 最小チワワ問題
ユーザー phsplsphspls
提出日時 2020-03-28 11:12:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 115,512 KB
実行使用メモリ 27,304 KB
最終ジャッジ日時 2025-01-02 10:57:01
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge1 / 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;
using System.Collections.Generic;
using System.Linq;

public class P0345 {
    public static void Main() {
        var s = Console.ReadLine().Trim().ToCharArray();
        var clist = new List<int>();
        var wlist = new List<int>();
        for(int i=0; i<s.Length; i++) {
            if(s[i] == 'c') clist.Add(i);
            if(s[i] == 'w') wlist.Add(i);
        }
        var result = s.Length + 1;
        for(int i=0; i<clist.Count(); i++) {
            var c = clist[i];
            var wcount = 0;
            for(int j=0; j<wlist.Count(); j++) {
                if(c < wlist[j]) wcount++;
                if(wcount == 2) {
                    result = Math.Min(result, wlist[j] - c + 1);
                    break;
                }
            }
        }
        if(result == s.Length + 1) {
            Console.WriteLine(-1);
        } else {
            Console.WriteLine(result);
        }
    }
}
0