結果
問題 | No.345 最小チワワ問題 |
ユーザー | fujita |
提出日時 | 2023-05-11 09:46:05 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,838 bytes |
コンパイル時間 | 14,591 ms |
コンパイル使用メモリ | 171,404 KB |
実行使用メモリ | 185,580 KB |
最終ジャッジ日時 | 2024-05-05 12:27:51 |
合計ジャッジ時間 | 17,185 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
27,008 KB |
testcase_01 | AC | 46 ms
27,136 KB |
testcase_02 | AC | 46 ms
27,384 KB |
testcase_03 | AC | 47 ms
27,256 KB |
testcase_04 | AC | 46 ms
27,384 KB |
testcase_05 | AC | 47 ms
27,264 KB |
testcase_06 | AC | 47 ms
27,008 KB |
testcase_07 | AC | 46 ms
27,124 KB |
testcase_08 | AC | 46 ms
26,752 KB |
testcase_09 | AC | 45 ms
26,968 KB |
testcase_10 | AC | 46 ms
27,220 KB |
testcase_11 | AC | 46 ms
27,008 KB |
testcase_12 | AC | 46 ms
27,136 KB |
testcase_13 | AC | 46 ms
27,128 KB |
testcase_14 | AC | 48 ms
27,904 KB |
testcase_15 | AC | 47 ms
27,008 KB |
testcase_16 | AC | 46 ms
26,880 KB |
testcase_17 | AC | 46 ms
27,008 KB |
testcase_18 | AC | 46 ms
27,136 KB |
testcase_19 | WA | - |
testcase_20 | AC | 47 ms
27,392 KB |
testcase_21 | AC | 46 ms
26,844 KB |
testcase_22 | AC | 47 ms
27,264 KB |
testcase_23 | AC | 47 ms
27,264 KB |
testcase_24 | AC | 48 ms
27,392 KB |
testcase_25 | AC | 47 ms
27,384 KB |
testcase_26 | AC | 47 ms
27,008 KB |
testcase_27 | AC | 46 ms
27,008 KB |
testcase_28 | AC | 47 ms
26,752 KB |
testcase_29 | WA | - |
testcase_30 | AC | 47 ms
27,384 KB |
testcase_31 | AC | 46 ms
185,580 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (98 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/
ソースコード
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 = str.Length -3 , cc = 0 , Wcnt = 0 , anscount = 0 , temp = str.Length; for (int i = 0; i < str.Length; i++) { if(str.Substring(i,1) == "c" && C == 0) { C = 1; Ccnt = i; } else if (str.Substring(i, 1) == "c" && C == 1 && cc == 0) { cc = i; } else if (str.Substring(i, 1) == "w" && C == 1) { W++; Wcnt = i; } if(C == 1 && W == 2 && Wcnt - Ccnt + 1 >= anscount || C == 1 && W == 2 && Wcnt - Ccnt + 1 <= anscount || C == 1 && W == 2 && Wcnt - Ccnt + 1 >= temp || C == 1 && W == 2 && Wcnt - Ccnt + 1 <= temp)//&& i == str.Length - 1 { if(anscount == 0 || cc == 0) { int sum = Wcnt - Ccnt + 1; anscount = sum; if(cc == 0 || !(anscount == 0)) { i = Ccnt; C = 0; Ccnt = 0; //cc = 0; W = 0; Wcnt = 0; continue; } else if (cc == 0 || anscount == 0) { continue; } } else { int sum2 = Wcnt - Ccnt + 1; if(temp > sum2) { temp = sum2; } i = cc - 1; C = 0; Ccnt = 0; W = 0; Wcnt = 0; cc = 0; } } } if(anscount == 0) { Console.WriteLine("-1"); } else if (anscount > temp) { Console.WriteLine(temp); } else if (anscount < temp) { Console.WriteLine(anscount); } else if (anscount == temp) { Console.WriteLine(anscount); } } } }