結果

問題 No.2619 Sorted Nim
ユーザー heno239heno239
提出日時 2024-02-02 15:59:49
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 726 bytes
コンパイル時間 10,612 ms
コンパイル使用メモリ 166,592 KB
実行使用メモリ 205,528 KB
最終ジャッジ日時 2024-09-28 10:36:11
合計ジャッジ時間 16,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
29,696 KB
testcase_01 AC 56 ms
30,080 KB
testcase_02 AC 97 ms
51,072 KB
testcase_03 AC 100 ms
54,072 KB
testcase_04 AC 97 ms
51,508 KB
testcase_05 AC 102 ms
51,624 KB
testcase_06 AC 103 ms
55,280 KB
testcase_07 WA -
testcase_08 AC 101 ms
54,288 KB
testcase_09 WA -
testcase_10 AC 102 ms
53,960 KB
testcase_11 WA -
testcase_12 AC 102 ms
53,752 KB
testcase_13 WA -
testcase_14 AC 102 ms
53,828 KB
testcase_15 WA -
testcase_16 AC 101 ms
54,556 KB
testcase_17 WA -
testcase_18 AC 102 ms
54,152 KB
testcase_19 WA -
testcase_20 AC 97 ms
51,164 KB
testcase_21 AC 105 ms
55,560 KB
testcase_22 AC 100 ms
52,300 KB
testcase_23 AC 102 ms
53,628 KB
testcase_24 AC 103 ms
54,736 KB
testcase_25 AC 102 ms
54,440 KB
testcase_26 AC 100 ms
53,076 KB
testcase_27 AC 96 ms
51,192 KB
testcase_28 AC 105 ms
55,676 KB
testcase_29 AC 104 ms
54,828 KB
testcase_30 AC 100 ms
53,220 KB
testcase_31 AC 57 ms
30,076 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 97 ms
51,372 KB
testcase_35 WA -
testcase_36 AC 101 ms
54,076 KB
testcase_37 AC 57 ms
29,952 KB
testcase_38 AC 98 ms
51,528 KB
testcase_39 AC 102 ms
54,400 KB
testcase_40 AC 98 ms
52,284 KB
testcase_41 WA -
testcase_42 AC 98 ms
50,780 KB
testcase_43 AC 102 ms
54,392 KB
testcase_44 AC 102 ms
53,348 KB
testcase_45 AC 102 ms
54,268 KB
testcase_46 AC 102 ms
53,360 KB
testcase_47 AC 99 ms
51,336 KB
testcase_48 AC 58 ms
29,952 KB
testcase_49 AC 99 ms
52,608 KB
testcase_50 AC 97 ms
51,336 KB
testcase_51 AC 98 ms
52,504 KB
testcase_52 AC 57 ms
30,036 KB
testcase_53 AC 105 ms
55,692 KB
testcase_54 AC 100 ms
51,880 KB
testcase_55 WA -
testcase_56 WA -
testcase_57 AC 107 ms
54,664 KB
testcase_58 AC 105 ms
54,712 KB
testcase_59 WA -
testcase_60 AC 99 ms
51,664 KB
testcase_61 AC 99 ms
205,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (121 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;
using System.Diagnostics;
using System.Numerics;
using System.Linq;

namespace ConsoleApplication1
{
    internal class Program
    {
        public static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            int[] a=Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
            int x = 0;
            for (int i = 0; i < n; i += 2)
            {
                int v = a[i];
                if (i > 0) v -= a[i - 1];
                x ^= v;
            }

            if (x>0)
            {
                Console.WriteLine("First");
            }
            else
            {
                Console.WriteLine("Second");
            }
        }
    }
}
0