結果
問題 | No.2777 Wild Flush |
ユーザー | tobisatis |
提出日時 | 2024-06-07 21:24:28 |
言語 | C# (.NET 8.0.203) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,833 bytes |
コンパイル時間 | 7,375 ms |
コンパイル使用メモリ | 169,752 KB |
実行使用メモリ | 191,896 KB |
最終ジャッジ日時 | 2024-06-07 21:24:41 |
合計ジャッジ時間 | 12,101 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
31,104 KB |
testcase_01 | AC | 47 ms
30,592 KB |
testcase_02 | AC | 47 ms
30,720 KB |
testcase_03 | RE | - |
testcase_04 | AC | 51 ms
31,104 KB |
testcase_05 | AC | 48 ms
30,592 KB |
testcase_06 | RE | - |
testcase_07 | AC | 58 ms
30,848 KB |
testcase_08 | AC | 48 ms
30,720 KB |
testcase_09 | RE | - |
testcase_10 | AC | 70 ms
37,248 KB |
testcase_11 | AC | 65 ms
37,248 KB |
testcase_12 | AC | 100 ms
46,848 KB |
testcase_13 | AC | 83 ms
44,800 KB |
testcase_14 | AC | 82 ms
44,800 KB |
testcase_15 | AC | 83 ms
44,800 KB |
testcase_16 | AC | 52 ms
32,000 KB |
testcase_17 | AC | 80 ms
44,288 KB |
testcase_18 | AC | 86 ms
40,192 KB |
testcase_19 | AC | 75 ms
40,192 KB |
testcase_20 | AC | 66 ms
35,200 KB |
testcase_21 | AC | 64 ms
34,304 KB |
testcase_22 | AC | 75 ms
39,808 KB |
testcase_23 | AC | 79 ms
39,552 KB |
testcase_24 | AC | 77 ms
41,344 KB |
testcase_25 | AC | 81 ms
44,672 KB |
testcase_26 | AC | 78 ms
42,752 KB |
testcase_27 | AC | 70 ms
37,632 KB |
testcase_28 | AC | 63 ms
191,896 KB |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.csproj を復元しました (90 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/
ソースコード
namespace AtCoder; #nullable enable using System.Numerics; static class Extensions { public static T[] Repeat<T>(this int time, Func<T> F) => Enumerable.Range(0, time).Select(_ => F()).ToArray(); } class AtCoder { object? Solve() { var n = Int(); var k = Int(); var d = new Dictionary<int, int>(); var z = 0; for (var i = 0; i < n; i++) { var a = Int(); if (a == 0) { z++; continue; } if (d.TryGetValue(a, out var v)) d[a] = v + 1; else d[a] = 1; } var max = d.Values.Max(); return max + z >= k; } public static void Main() => new AtCoder().Run(); public void Run() { var res = Solve(); if (res != null) { if (res is bool yes) res = yes ? "Yes" : "No"; sw.WriteLine(res); } sw.Flush(); } string[] input = Array.Empty<string>(); int iter = 0; readonly StreamWriter sw = new(Console.OpenStandardOutput()) { AutoFlush = false }; string String() { while (iter >= input.Length) (input, iter) = (Console.ReadLine()!.Split(' '), 0); return input[iter++]; } T Input<T>() where T : IParsable<T> => T.Parse(String(), null); int Int() => Input<int>(); void Out(object? x, string? separator = null) { separator ??= Environment.NewLine; if (x is System.Collections.IEnumerable obj and not string) { var firstLine = true; foreach (var item in obj) { if (!firstLine) sw.Write(separator); firstLine = false; sw.Write(item); } } else sw.Write(x); sw.WriteLine(); } }