結果
| 問題 |
No.2282 Boxed Nim
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-07-23 21:26:24 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
AC
|
| 実行時間 | 79 ms / 2,000 ms |
| コード長 | 544 bytes |
| コンパイル時間 | 3,293 ms |
| コンパイル使用メモリ | 110,976 KB |
| 実行使用メモリ | 39,864 KB |
| 最終ジャッジ日時 | 2024-09-25 00:50:33 |
| 合計ジャッジ時間 | 5,661 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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 string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
public static void Main()
{
Solve();
}
static void Solve()
{
var n = NN;
var a = NList;
WriteLine(a.Count(ai => ai == 0) % 2 == 0 ? "Second" : "First");
}
}