結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-20 21:35:11 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 80 ms / 2,000 ms |
| + 316µs | |
| コード長 | 145 bytes |
| 記録 | |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 96,168 KB |
| 実行使用メモリ | 116,024 KB |
| 最終ジャッジ日時 | 2026-08-31 15:39:36 |
| 合計ジャッジ時間 | 4,124 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
import sys
if N % 2 == 0:
print('Second')
exit()
else:
print('First')
exit()