結果
| 問題 | No.761 平均値ゲーム |
| コンテスト | |
| ユーザー |
rlangevin
|
| 提出日時 | 2023-10-20 08:19:52 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 107 bytes |
| コンパイル時間 | 419 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 99,712 KB |
| 最終ジャッジ日時 | 2024-09-20 03:48:58 |
| 合計ジャッジ時間 | 9,966 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 67 WA * 33 |
ソースコード
N = int(input())
S = set(list(map(int, input().split())))
print("First") if len(S) % 2 else print("Second")
rlangevin