結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
SidewaysOwl
|
| 提出日時 | 2022-05-20 23:09:24 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 80 ms / 2,000 ms |
| + 917µs | |
| コード長 | 106 bytes |
| 記録 | |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 95,704 KB |
| 実行使用メモリ | 116,596 KB |
| 最終ジャッジ日時 | 2026-08-31 17:31:58 |
| 合計ジャッジ時間 | 3,566 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
n = int(input())
a = list(map(int,input().split()))
if n & 1:
print("First")
else:
print("Second")
SidewaysOwl