結果

問題 No.2619 Sorted Nim
ユーザー heno239heno239
提出日時 2024-02-02 16:43:56
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 8,620 ms
コンパイル使用メモリ 166,588 KB
実行使用メモリ 214,540 KB
最終ジャッジ日時 2024-09-28 10:36:33
合計ジャッジ時間 16,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
30,060 KB
testcase_01 AC 53 ms
29,952 KB
testcase_02 AC 100 ms
58,256 KB
testcase_03 AC 107 ms
62,008 KB
testcase_04 AC 103 ms
58,428 KB
testcase_05 AC 104 ms
58,380 KB
testcase_06 AC 121 ms
64,240 KB
testcase_07 AC 104 ms
58,372 KB
testcase_08 AC 110 ms
62,868 KB
testcase_09 AC 54 ms
30,080 KB
testcase_10 AC 112 ms
62,144 KB
testcase_11 AC 107 ms
59,900 KB
testcase_12 AC 109 ms
61,404 KB
testcase_13 AC 57 ms
29,824 KB
testcase_14 AC 108 ms
61,924 KB
testcase_15 AC 106 ms
60,156 KB
testcase_16 AC 111 ms
62,760 KB
testcase_17 AC 120 ms
63,800 KB
testcase_18 AC 109 ms
62,604 KB
testcase_19 AC 102 ms
58,196 KB
testcase_20 AC 103 ms
58,100 KB
testcase_21 AC 120 ms
66,180 KB
testcase_22 AC 105 ms
59,320 KB
testcase_23 AC 110 ms
61,704 KB
testcase_24 AC 111 ms
62,936 KB
testcase_25 AC 111 ms
62,652 KB
testcase_26 AC 108 ms
60,648 KB
testcase_27 AC 103 ms
58,076 KB
testcase_28 AC 120 ms
64,508 KB
testcase_29 AC 111 ms
63,196 KB
testcase_30 AC 109 ms
61,080 KB
testcase_31 AC 55 ms
29,952 KB
testcase_32 AC 106 ms
58,604 KB
testcase_33 AC 106 ms
62,368 KB
testcase_34 AC 102 ms
58,680 KB
testcase_35 AC 105 ms
61,024 KB
testcase_36 AC 107 ms
62,276 KB
testcase_37 AC 53 ms
30,080 KB
testcase_38 AC 111 ms
58,960 KB
testcase_39 AC 111 ms
62,476 KB
testcase_40 AC 106 ms
59,608 KB
testcase_41 AC 105 ms
59,876 KB
testcase_42 AC 105 ms
58,076 KB
testcase_43 AC 110 ms
62,452 KB
testcase_44 AC 110 ms
61,544 KB
testcase_45 AC 113 ms
62,548 KB
testcase_46 AC 109 ms
60,916 KB
testcase_47 AC 103 ms
58,380 KB
testcase_48 AC 54 ms
29,788 KB
testcase_49 AC 105 ms
59,908 KB
testcase_50 AC 104 ms
58,772 KB
testcase_51 AC 107 ms
60,044 KB
testcase_52 AC 54 ms
30,208 KB
testcase_53 AC 122 ms
64,532 KB
testcase_54 AC 106 ms
59,440 KB
testcase_55 AC 121 ms
63,796 KB
testcase_56 AC 107 ms
60,184 KB
testcase_57 AC 110 ms
63,108 KB
testcase_58 AC 111 ms
62,916 KB
testcase_59 AC 108 ms
60,184 KB
testcase_60 AC 107 ms
58,712 KB
testcase_61 AC 110 ms
214,540 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (108 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 #

// See https://aka.ms/new-console-template for more information
using System.Collections;
using System.Runtime.InteropServices;

internal class Program
{
    public static void Main(string[] args)
    {
        int n = int.Parse(Console.ReadLine());
        int[] a = Console.ReadLine().Split(' ').Select(int.Parse).ToArray();
        ArrayList ds = new ArrayList();
        ds.Add(a[0]);
        for (int i = 1; i < n; i++)
        {
            ds.Add(a[i] - a[i - 1]);
        }
        ds.Reverse();
        int x = 0;
        for (int i = 0; i < ds.Count; i += 2)
        {
            x ^= (int)ds[i];
        }

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