結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
Rainkunch
|
| 提出日時 | 2022-05-20 23:48:41 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 89 ms / 2,000 ms |
| + 967µs | |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 227 ms |
| コンパイル使用メモリ | 96,132 KB |
| 実行使用メモリ | 115,968 KB |
| 最終ジャッジ日時 | 2026-08-31 17:54:10 |
| 合計ジャッジ時間 | 4,078 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
a = len(A)
if a%2 == 0: print('Second')
else: print('First')
Rainkunch