結果

問題 No.2044 Infinite Nim
ユーザー hir355hir355
提出日時 2022-08-19 21:44:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 84,392 KB
最終ジャッジ日時 2024-10-09 06:03:19
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,508 KB
testcase_01 AC 37 ms
52,316 KB
testcase_02 AC 37 ms
51,752 KB
testcase_03 AC 37 ms
52,872 KB
testcase_04 AC 37 ms
52,372 KB
testcase_05 AC 38 ms
52,520 KB
testcase_06 AC 37 ms
52,956 KB
testcase_07 AC 34 ms
52,692 KB
testcase_08 AC 36 ms
52,032 KB
testcase_09 AC 36 ms
52,552 KB
testcase_10 AC 36 ms
52,832 KB
testcase_11 AC 36 ms
52,692 KB
testcase_12 AC 35 ms
52,688 KB
testcase_13 AC 53 ms
70,496 KB
testcase_14 AC 45 ms
65,476 KB
testcase_15 AC 45 ms
66,860 KB
testcase_16 AC 46 ms
64,640 KB
testcase_17 AC 53 ms
72,904 KB
testcase_18 AC 47 ms
66,732 KB
testcase_19 AC 48 ms
65,932 KB
testcase_20 AC 50 ms
68,588 KB
testcase_21 AC 61 ms
78,124 KB
testcase_22 AC 51 ms
71,852 KB
testcase_23 AC 47 ms
66,752 KB
testcase_24 AC 57 ms
75,104 KB
testcase_25 AC 46 ms
66,820 KB
testcase_26 AC 54 ms
74,388 KB
testcase_27 AC 45 ms
66,048 KB
testcase_28 AC 59 ms
79,408 KB
testcase_29 AC 51 ms
69,820 KB
testcase_30 AC 53 ms
75,124 KB
testcase_31 AC 64 ms
82,396 KB
testcase_32 AC 62 ms
82,040 KB
testcase_33 AC 63 ms
82,108 KB
testcase_34 AC 55 ms
79,176 KB
testcase_35 AC 64 ms
84,392 KB
testcase_36 AC 37 ms
52,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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