結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-06-24 03:04:56 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| コード長 | 180 bytes |
| 記録 | |
| コンパイル時間 | 446 ms |
| コンパイル使用メモリ | 85,384 KB |
| 実行使用メモリ | 108,172 KB |
| 最終ジャッジ日時 | 2026-05-08 05:07:05 |
| 合計ジャッジ時間 | 2,911 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
import sys
input = lambda: sys.stdin.readline().rstrip()
# ----------------------- #
n = int(input())
A = list(map(int, input().split()))
print('First' if n % 2 else 'Second')