結果
問題 | No.1852 Divide or Reduce |
ユーザー | kakel-san |
提出日時 | 2023-11-30 00:27:51 |
言語 | C# (.NET 8.0.203) |
結果 |
WA
|
実行時間 | - |
コード長 | 791 bytes |
コンパイル時間 | 7,953 ms |
コンパイル使用メモリ | 163,964 KB |
実行使用メモリ | 248,880 KB |
最終ジャッジ日時 | 2024-09-26 13:46:26 |
合計ジャッジ時間 | 16,529 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 60 ms
30,336 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 148 ms
63,488 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 152 ms
65,152 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 341 ms
86,272 KB |
testcase_17 | AC | 343 ms
86,016 KB |
testcase_18 | AC | 337 ms
86,016 KB |
testcase_19 | AC | 302 ms
75,668 KB |
testcase_20 | AC | 343 ms
248,880 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; using static System.Console; using System.Linq; using System.Collections.Generic; class Program { static int NN => int.Parse(ReadLine()); static int[] NList => ReadLine().Split().Select(int.Parse).ToArray(); static int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray(); public static void Main() { Solve(); } static void Solve() { var t = NN; var ans = new bool[t]; for (var u = 0; u < t; ++u) { var n = NN; var a = NList; var ecount = a.Count(ai => ai % 2 == 0); ans[u] = ecount == n || ecount % 2 == 1; } WriteLine(string.Join("\n", ans.Select(f => f ? "First" : "Second"))); } }