結果

問題 No.2282 Boxed Nim
ユーザー Shirotsume
提出日時 2023-04-28 22:54:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 83,968 KB
最終ジャッジ日時 2024-11-17 21:51:43
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

n = ii()

a = li()

print('First' if a.count(0) % 2 else 'Second')
0