結果

問題 No.2044 Infinite Nim
ユーザー satama6satama6
提出日時 2022-10-18 23:04:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,640 KB
最終ジャッジ日時 2024-06-29 05:09:21
合計ジャッジ時間 3,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 25 ms
10,496 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
12,856 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 40 ms
12,828 KB
testcase_19 AC 40 ms
13,056 KB
testcase_20 WA -
testcase_21 AC 62 ms
18,440 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 55 ms
16,780 KB
testcase_25 WA -
testcase_26 AC 54 ms
16,884 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 46 ms
15,244 KB
testcase_30 WA -
testcase_31 AC 74 ms
19,700 KB
testcase_32 AC 72 ms
19,828 KB
testcase_33 AC 72 ms
19,700 KB
testcase_34 AC 63 ms
17,216 KB
testcase_35 AC 73 ms
21,640 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

grundy = 0
cnt = 0

for a in A:
    if a == 0:
        cnt += 1
    else:
        grundy ^= a

if cnt & 1:
    print('First')
elif grundy > 0:
    print('First')
else:
    print('Second')
    
0