結果
| 問題 | No.1945 Go Push! |
| コンテスト | |
| ユーザー |
tnodino
|
| 提出日時 | 2022-05-21 18:56:48 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 126 ms / 2,000 ms |
| + 534µs | |
| コード長 | 111 bytes |
| 記録 | |
| コンパイル時間 | 295 ms |
| コンパイル使用メモリ | 21,596 KB |
| 実行使用メモリ | 36,820 KB |
| 最終ジャッジ日時 | 2026-08-31 19:03:34 |
| 合計ジャッジ時間 | 5,143 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 |
ソースコード
N = int(input())
A = list(map(int,input().split()))
if N % 2 == 0:
print('Second')
else:
print('First')
tnodino