結果

問題 No.2044 Infinite Nim
ユーザー merlinmerlin
提出日時 2022-08-19 22:11:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 620 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 74,456 KB
実行使用メモリ 60,668 KB
最終ジャッジ日時 2024-10-08 08:56:54
合計ジャッジ時間 7,584 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
37,004 KB
testcase_01 AC 47 ms
37,084 KB
testcase_02 AC 50 ms
36,904 KB
testcase_03 AC 47 ms
37,200 KB
testcase_04 AC 50 ms
36,876 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 47 ms
37,000 KB
testcase_08 AC 47 ms
36,860 KB
testcase_09 AC 49 ms
36,620 KB
testcase_10 AC 50 ms
37,184 KB
testcase_11 AC 47 ms
37,108 KB
testcase_12 AC 47 ms
37,368 KB
testcase_13 AC 148 ms
45,052 KB
testcase_14 AC 125 ms
41,816 KB
testcase_15 AC 113 ms
41,256 KB
testcase_16 AC 125 ms
41,472 KB
testcase_17 AC 190 ms
45,088 KB
testcase_18 AC 106 ms
41,020 KB
testcase_19 AC 114 ms
41,436 KB
testcase_20 AC 147 ms
45,896 KB
testcase_21 AC 200 ms
49,012 KB
testcase_22 AC 139 ms
45,232 KB
testcase_23 AC 120 ms
42,620 KB
testcase_24 WA -
testcase_25 AC 138 ms
45,192 KB
testcase_26 WA -
testcase_27 AC 103 ms
42,160 KB
testcase_28 AC 193 ms
48,600 KB
testcase_29 WA -
testcase_30 AC 153 ms
46,064 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 203 ms
51,372 KB
testcase_36 AC 48 ms
37,096 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==0) sb.append("Second");
        else sb.append("First");
        System.out.print(sb);
    }
}
0