結果

問題 No.2044 Infinite Nim
ユーザー merlinmerlin
提出日時 2022-08-19 22:14:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 610 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 60,836 KB
最終ジャッジ日時 2024-10-08 09:02:53
合計ジャッジ時間 8,324 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,768 KB
testcase_01 AC 51 ms
36,940 KB
testcase_02 AC 52 ms
37,084 KB
testcase_03 AC 52 ms
37,224 KB
testcase_04 AC 54 ms
37,140 KB
testcase_05 AC 53 ms
37,184 KB
testcase_06 AC 52 ms
36,968 KB
testcase_07 AC 53 ms
36,844 KB
testcase_08 AC 53 ms
37,084 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 52 ms
36,856 KB
testcase_12 AC 52 ms
37,168 KB
testcase_13 AC 161 ms
45,488 KB
testcase_14 AC 131 ms
41,508 KB
testcase_15 AC 121 ms
41,016 KB
testcase_16 AC 132 ms
41,608 KB
testcase_17 AC 191 ms
45,080 KB
testcase_18 AC 116 ms
41,000 KB
testcase_19 AC 110 ms
41,500 KB
testcase_20 AC 165 ms
45,164 KB
testcase_21 AC 213 ms
49,024 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 193 ms
46,448 KB
testcase_25 WA -
testcase_26 AC 191 ms
44,220 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 169 ms
46,040 KB
testcase_30 WA -
testcase_31 AC 216 ms
49,212 KB
testcase_32 AC 217 ms
49,068 KB
testcase_33 AC 214 ms
49,104 KB
testcase_34 AC 169 ms
49,132 KB
testcase_35 AC 224 ms
49,996 KB
testcase_36 AC 52 ms
37,124 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) a=2;
            else xor^=a;
        }

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