結果

問題 No.2044 Infinite Nim
ユーザー ntudantuda
提出日時 2022-08-24 22:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,092 KB
実行使用メモリ 85,568 KB
最終ジャッジ日時 2024-10-12 06:47:31
合計ジャッジ時間 4,141 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,764 KB
testcase_01 AC 35 ms
52,200 KB
testcase_02 AC 35 ms
52,940 KB
testcase_03 AC 35 ms
52,964 KB
testcase_04 AC 36 ms
53,684 KB
testcase_05 AC 35 ms
52,216 KB
testcase_06 AC 36 ms
52,244 KB
testcase_07 AC 36 ms
52,888 KB
testcase_08 AC 37 ms
53,080 KB
testcase_09 AC 36 ms
53,128 KB
testcase_10 AC 36 ms
53,580 KB
testcase_11 AC 36 ms
51,948 KB
testcase_12 AC 37 ms
52,056 KB
testcase_13 AC 52 ms
71,652 KB
testcase_14 AC 48 ms
67,224 KB
testcase_15 AC 46 ms
65,524 KB
testcase_16 AC 47 ms
65,800 KB
testcase_17 AC 54 ms
73,964 KB
testcase_18 AC 44 ms
65,744 KB
testcase_19 AC 46 ms
66,740 KB
testcase_20 AC 52 ms
71,888 KB
testcase_21 AC 58 ms
77,916 KB
testcase_22 AC 51 ms
72,100 KB
testcase_23 AC 46 ms
68,808 KB
testcase_24 AC 54 ms
75,156 KB
testcase_25 AC 47 ms
69,028 KB
testcase_26 AC 52 ms
74,228 KB
testcase_27 AC 45 ms
67,496 KB
testcase_28 AC 59 ms
80,468 KB
testcase_29 AC 49 ms
70,024 KB
testcase_30 AC 55 ms
76,128 KB
testcase_31 AC 59 ms
81,856 KB
testcase_32 AC 62 ms
82,404 KB
testcase_33 AC 60 ms
83,344 KB
testcase_34 AC 55 ms
78,556 KB
testcase_35 AC 60 ms
85,568 KB
testcase_36 AC 35 ms
52,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
tmp = 0
cnt = 0
for a in A:
    if a > 0:
        tmp ^= a
    else:
        cnt += 1
if cnt & 1:
    print("First")
else:
    if tmp == 0:
        print("Second")
    else:
        print("First")
0