結果

問題 No.2619 Sorted Nim
ユーザー nikoro256
提出日時 2024-01-26 23:18:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 108 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,520 KB
最終ジャッジ日時 2024-09-28 09:05:03
合計ジャッジ時間 8,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 49 WA * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
if sum(A)%2==0:
    print('Second')
else:
    print('First')
0