結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-20 22:56:14 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 83 ms / 2,000 ms |
| + 560µs | |
| コード長 | 188 bytes |
| 記録 | |
| コンパイル時間 | 219 ms |
| コンパイル使用メモリ | 96,332 KB |
| 実行使用メモリ | 115,940 KB |
| 最終ジャッジ日時 | 2026-08-31 17:24:50 |
| 合計ジャッジ時間 | 4,147 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
#int(input())
#map(int, input().split())
#list(map(int, input().split()))
N = int(input())
A = list(map(int, input().split()))
if N % 2 == 0:
print("Second")
else:
print("First")