結果

問題 No.345 最小チワワ問題
ユーザー fujitafujita
提出日時 2023-05-10 15:46:23
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,162 bytes
コンパイル時間 8,245 ms
コンパイル使用メモリ 168,300 KB
実行使用メモリ 182,656 KB
最終ジャッジ日時 2024-05-05 03:38:20
合計ジャッジ時間 10,610 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
27,008 KB
testcase_01 AC 40 ms
26,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 41 ms
27,008 KB
testcase_05 WA -
testcase_06 AC 38 ms
26,880 KB
testcase_07 AC 37 ms
26,496 KB
testcase_08 AC 40 ms
27,000 KB
testcase_09 AC 41 ms
26,880 KB
testcase_10 AC 42 ms
26,880 KB
testcase_11 AC 40 ms
26,744 KB
testcase_12 AC 38 ms
27,008 KB
testcase_13 AC 39 ms
26,496 KB
testcase_14 AC 39 ms
27,264 KB
testcase_15 AC 39 ms
26,880 KB
testcase_16 AC 38 ms
26,752 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 41 ms
26,624 KB
testcase_21 AC 39 ms
27,008 KB
testcase_22 AC 39 ms
27,136 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 48 ms
27,008 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 39 ms
182,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (87 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
namespace yukicoder
{
    class Program
    {

        static void Main(string[] args)
        {

            var str = Console.ReadLine();
            string[] strings = new string[str.Length];
            int C = 0 , W = 0 ,  Ccnt = 0 , Wcnt = 0 , anscount = 0;


            for (int i = 0; i < str.Length; i++)
            {
                if(str.Substring(i,1) == "c")
                {
                    C = 1;
                    Ccnt = i;
                }
                else if (str.Substring(i, 1) == "w" && C == 1)
                {
                    W++;
                    Wcnt = i;
                }
                
                if(C == 1 && W == 2)
                {
                    int sum = Wcnt - Ccnt + 1;
                    anscount = sum;
                    C = 0;
                    Ccnt = 0;
                    W = 0;
                    Wcnt = 0;
                }
            }

            if(anscount > 0)
            {
                Console.WriteLine(anscount);
            }
            else if (anscount == 0)
            {
                Console.WriteLine("-1");
            }
        }
    }
}
0