結果

問題 No.2044 Infinite Nim
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-08-19 21:51:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 83,980 KB
最終ジャッジ日時 2024-10-09 06:04:59
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,428 KB
testcase_01 AC 37 ms
52,076 KB
testcase_02 AC 37 ms
52,484 KB
testcase_03 AC 38 ms
52,604 KB
testcase_04 AC 37 ms
52,684 KB
testcase_05 AC 37 ms
53,228 KB
testcase_06 AC 37 ms
51,816 KB
testcase_07 AC 36 ms
51,876 KB
testcase_08 AC 36 ms
52,932 KB
testcase_09 AC 37 ms
53,720 KB
testcase_10 AC 37 ms
53,116 KB
testcase_11 AC 37 ms
52,052 KB
testcase_12 AC 37 ms
53,416 KB
testcase_13 AC 51 ms
70,208 KB
testcase_14 AC 46 ms
64,872 KB
testcase_15 AC 48 ms
65,972 KB
testcase_16 AC 46 ms
65,132 KB
testcase_17 AC 52 ms
73,280 KB
testcase_18 AC 48 ms
65,956 KB
testcase_19 AC 49 ms
66,072 KB
testcase_20 AC 51 ms
68,636 KB
testcase_21 AC 59 ms
78,568 KB
testcase_22 AC 51 ms
70,704 KB
testcase_23 AC 47 ms
66,824 KB
testcase_24 AC 57 ms
75,096 KB
testcase_25 AC 47 ms
67,256 KB
testcase_26 AC 56 ms
74,972 KB
testcase_27 AC 46 ms
66,692 KB
testcase_28 AC 60 ms
79,800 KB
testcase_29 AC 52 ms
70,328 KB
testcase_30 AC 55 ms
74,140 KB
testcase_31 AC 66 ms
82,580 KB
testcase_32 AC 66 ms
82,292 KB
testcase_33 AC 65 ms
82,176 KB
testcase_34 AC 60 ms
78,416 KB
testcase_35 AC 65 ms
83,980 KB
testcase_36 AC 37 ms
52,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


n=int(input())
a=list(map(int,input().split()))
if min(a)==-1:
    if a.count(-1)%2==1:
        print("First")
    else:
        s=0
        for x in a:
            if x>=0:s^=x
        if s > 0:
            print("First")
        else:
            print("Second")

else:
    s=0
    for x in a:s^=x
    if s>0:
        print("First")
    else:
        print("Second")
0