結果

問題 No.2044 Infinite Nim
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-25 00:30:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-04-20 13:12:43
合計ジャッジ時間 4,182 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 36 ms
51,712 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 36 ms
52,200 KB
testcase_08 AC 36 ms
51,584 KB
testcase_09 AC 42 ms
52,096 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 34 ms
51,584 KB
testcase_12 AC 36 ms
51,584 KB
testcase_13 AC 54 ms
71,296 KB
testcase_14 AC 50 ms
66,304 KB
testcase_15 AC 47 ms
65,408 KB
testcase_16 AC 47 ms
65,792 KB
testcase_17 AC 56 ms
74,112 KB
testcase_18 AC 47 ms
65,152 KB
testcase_19 AC 48 ms
66,048 KB
testcase_20 AC 53 ms
70,272 KB
testcase_21 AC 58 ms
76,800 KB
testcase_22 AC 53 ms
71,808 KB
testcase_23 AC 49 ms
68,096 KB
testcase_24 AC 57 ms
74,740 KB
testcase_25 AC 50 ms
67,584 KB
testcase_26 AC 56 ms
73,856 KB
testcase_27 AC 49 ms
66,304 KB
testcase_28 AC 64 ms
80,128 KB
testcase_29 AC 52 ms
69,504 KB
testcase_30 AC 60 ms
75,520 KB
testcase_31 AC 65 ms
81,408 KB
testcase_32 AC 65 ms
81,536 KB
testcase_33 AC 69 ms
81,280 KB
testcase_34 AC 61 ms
78,208 KB
testcase_35 AC 64 ms
83,584 KB
testcase_36 AC 35 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
gr = 0
ct = 0
for a in A:
    if a > 0:
        gr ^= a
    else:
        ct += 1

if gr:
    print('First')
else:
    print('First' if ct % 2 else 'Second')
0