結果

問題 No.2044 Infinite Nim
ユーザー ShirotsumeShirotsume
提出日時 2022-08-19 21:45:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 87,152 KB
最終ジャッジ日時 2024-10-09 06:04:10
合計ジャッジ時間 3,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,844 KB
testcase_01 AC 37 ms
53,420 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 37 ms
52,620 KB
testcase_04 AC 37 ms
52,744 KB
testcase_05 AC 38 ms
52,872 KB
testcase_06 AC 37 ms
52,904 KB
testcase_07 AC 39 ms
53,072 KB
testcase_08 AC 37 ms
53,012 KB
testcase_09 AC 37 ms
53,108 KB
testcase_10 AC 36 ms
52,704 KB
testcase_11 AC 37 ms
52,312 KB
testcase_12 AC 37 ms
52,688 KB
testcase_13 AC 55 ms
75,652 KB
testcase_14 AC 48 ms
67,916 KB
testcase_15 AC 49 ms
68,464 KB
testcase_16 AC 48 ms
67,628 KB
testcase_17 AC 55 ms
76,432 KB
testcase_18 AC 49 ms
67,952 KB
testcase_19 AC 50 ms
68,440 KB
testcase_20 AC 56 ms
73,744 KB
testcase_21 AC 63 ms
80,248 KB
testcase_22 AC 56 ms
77,220 KB
testcase_23 AC 49 ms
71,744 KB
testcase_24 AC 56 ms
77,056 KB
testcase_25 AC 49 ms
69,308 KB
testcase_26 AC 55 ms
75,820 KB
testcase_27 AC 50 ms
70,760 KB
testcase_28 AC 64 ms
86,420 KB
testcase_29 AC 49 ms
70,356 KB
testcase_30 AC 58 ms
81,044 KB
testcase_31 AC 70 ms
86,728 KB
testcase_32 AC 68 ms
87,152 KB
testcase_33 AC 69 ms
87,044 KB
testcase_34 AC 64 ms
86,216 KB
testcase_35 AC 63 ms
85,280 KB
testcase_36 AC 36 ms
53,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
rec = False #再帰を使うときはこれをTrueにする
if rec:
    sys.setrecursionlimit(5 * 10 ** 5)
    from pypyjit import set_param
    set_param('max_unroll_recursion=-1')
inf = 2 ** 63 - 1
mod = 998244353


n = ii()

a = li()
xor = 0
for v in a:
    if v == -1:
        xor ^= inf
    else:
        xor ^= v
if xor == 0:
    print('Second')
else:
    print('First')
0