結果

問題 No.2044 Infinite Nim
ユーザー merlinmerlin
提出日時 2022-08-19 22:20:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 74,720 KB
実行使用メモリ 60,796 KB
最終ジャッジ日時 2024-10-09 06:07:38
合計ジャッジ時間 8,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
50,268 KB
testcase_01 AC 54 ms
50,400 KB
testcase_02 AC 56 ms
50,076 KB
testcase_03 AC 53 ms
50,484 KB
testcase_04 AC 54 ms
50,024 KB
testcase_05 AC 53 ms
50,504 KB
testcase_06 AC 56 ms
50,452 KB
testcase_07 AC 54 ms
50,264 KB
testcase_08 AC 54 ms
50,260 KB
testcase_09 AC 53 ms
50,020 KB
testcase_10 AC 54 ms
50,120 KB
testcase_11 AC 56 ms
50,392 KB
testcase_12 AC 57 ms
50,056 KB
testcase_13 AC 163 ms
57,576 KB
testcase_14 AC 136 ms
54,100 KB
testcase_15 AC 117 ms
53,980 KB
testcase_16 AC 137 ms
54,280 KB
testcase_17 AC 205 ms
56,000 KB
testcase_18 AC 119 ms
54,268 KB
testcase_19 AC 130 ms
54,220 KB
testcase_20 AC 168 ms
57,128 KB
testcase_21 AC 204 ms
60,496 KB
testcase_22 AC 150 ms
57,012 KB
testcase_23 AC 134 ms
54,436 KB
testcase_24 AC 199 ms
58,304 KB
testcase_25 AC 149 ms
58,420 KB
testcase_26 AC 199 ms
56,112 KB
testcase_27 AC 121 ms
53,904 KB
testcase_28 AC 215 ms
60,456 KB
testcase_29 AC 177 ms
58,060 KB
testcase_30 AC 177 ms
57,920 KB
testcase_31 AC 225 ms
60,676 KB
testcase_32 AC 211 ms
60,692 KB
testcase_33 AC 221 ms
60,448 KB
testcase_34 AC 173 ms
60,376 KB
testcase_35 AC 219 ms
60,796 KB
testcase_36 AC 56 ms
50,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main
{
    public static void main(String args[])throws Exception
    {
        BufferedReader bu=new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb=new StringBuilder();
        int n=Integer.parseInt(bu.readLine());
        String s[]=bu.readLine().split(" ");
        int xor=0,inf=0,i,a;
        for(i=0;i<n;i++)
        {
            a=Integer.parseInt(s[i]);
            if(a<0) inf++;
            else xor^=a;
        }

        if(xor==0 && inf%2==0) sb.append("Second");
        else sb.append("First");
        System.out.println(sb);
    }
}
0