結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-07-16 20:32:43 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 220 ms / 2,000 ms |
| コード長 | 113 bytes |
| 記録 | |
| コンパイル時間 | 355 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 36,132 KB |
| 最終ジャッジ日時 | 2026-03-31 09:45:52 |
| 合計ジャッジ時間 | 4,786 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
n = int(input())
A = list(map(int, input().split()))
if n % 2 == 0:
print("Second")
else:
print("First")