結果
| 問題 | No.2619 Sorted Nim |
| コンテスト | |
| ユーザー |
nikoro256
|
| 提出日時 | 2024-01-26 23:18:42 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 108 bytes |
| 記録 | |
| コンパイル時間 | 317 ms |
| コンパイル使用メモリ | 86,028 KB |
| 実行使用メモリ | 108,164 KB |
| 最終ジャッジ日時 | 2026-04-15 01:12:39 |
| 合計ジャッジ時間 | 5,416 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 49 WA * 13 |
ソースコード
N=int(input())
A=list(map(int,input().split()))
if sum(A)%2==0:
print('Second')
else:
print('First')
nikoro256