結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
27,196 KB
testcase_01 AC 26 ms
27,052 KB
testcase_02 AC 28 ms
24,880 KB
testcase_03 AC 27 ms
25,136 KB
testcase_04 AC 28 ms
27,052 KB
testcase_05 AC 26 ms
25,020 KB
testcase_06 AC 28 ms
27,172 KB
testcase_07 AC 26 ms
24,876 KB
testcase_08 AC 26 ms
27,196 KB
testcase_09 AC 27 ms
27,176 KB
testcase_10 AC 29 ms
24,884 KB
testcase_11 AC 26 ms
23,220 KB
testcase_12 AC 27 ms
25,008 KB
testcase_13 AC 30 ms
25,144 KB
testcase_14 AC 28 ms
24,880 KB
testcase_15 AC 28 ms
27,304 KB
testcase_16 AC 28 ms
25,004 KB
testcase_17 AC 27 ms
22,964 KB
testcase_18 AC 27 ms
27,184 KB
testcase_19 AC 28 ms
24,880 KB
testcase_20 AC 30 ms
27,056 KB
testcase_21 AC 28 ms
23,348 KB
testcase_22 AC 27 ms
25,392 KB
testcase_23 AC 28 ms
25,128 KB
testcase_24 AC 28 ms
25,008 KB
testcase_25 AC 27 ms
25,004 KB
testcase_26 AC 28 ms
27,176 KB
testcase_27 AC 28 ms
25,396 KB
testcase_28 AC 27 ms
25,012 KB
testcase_29 AC 30 ms
26,936 KB
testcase_30 AC 28 ms
25,132 KB
testcase_31 AC 28 ms
27,168 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;

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