結果

問題 No.2044 Infinite Nim
ユーザー chineristACchineristAC
提出日時 2022-08-19 22:09:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 87,296 KB
最終ジャッジ日時 2024-10-09 06:06:57
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,680 KB
testcase_01 AC 45 ms
55,584 KB
testcase_02 AC 45 ms
55,680 KB
testcase_03 AC 45 ms
55,552 KB
testcase_04 AC 44 ms
55,680 KB
testcase_05 AC 45 ms
55,808 KB
testcase_06 AC 46 ms
56,064 KB
testcase_07 AC 46 ms
55,680 KB
testcase_08 AC 45 ms
55,808 KB
testcase_09 AC 45 ms
55,808 KB
testcase_10 AC 47 ms
55,936 KB
testcase_11 AC 47 ms
55,680 KB
testcase_12 AC 46 ms
55,552 KB
testcase_13 AC 61 ms
75,136 KB
testcase_14 AC 57 ms
70,032 KB
testcase_15 AC 56 ms
69,504 KB
testcase_16 AC 57 ms
69,376 KB
testcase_17 AC 62 ms
77,568 KB
testcase_18 AC 52 ms
68,992 KB
testcase_19 AC 54 ms
69,760 KB
testcase_20 AC 60 ms
74,368 KB
testcase_21 AC 69 ms
80,640 KB
testcase_22 AC 61 ms
75,648 KB
testcase_23 AC 57 ms
71,552 KB
testcase_24 AC 66 ms
78,720 KB
testcase_25 AC 57 ms
71,040 KB
testcase_26 AC 64 ms
77,440 KB
testcase_27 AC 58 ms
70,272 KB
testcase_28 AC 72 ms
84,352 KB
testcase_29 AC 60 ms
73,472 KB
testcase_30 AC 67 ms
79,488 KB
testcase_31 AC 76 ms
85,376 KB
testcase_32 AC 76 ms
85,376 KB
testcase_33 AC 72 ms
85,504 KB
testcase_34 AC 66 ms
81,408 KB
testcase_35 AC 72 ms
87,296 KB
testcase_36 AC 46 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()

G = 0
T = 0
for a in A:
    if a==-1:
        T += 1
    else:
        G ^= a

if G == 0 and T&1 == 0:
    print("Second")
else:
    print("First")
0