結果
| 問題 | No.1208 anti primenumber game |
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2020-08-31 16:59:23 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 268 bytes |
| 記録 | |
| コンパイル時間 | 808 ms |
| コンパイル使用メモリ | 20,572 KB |
| 実行使用メモリ | 36,264 KB |
| 最終ジャッジ日時 | 2026-05-11 09:00:43 |
| 合計ジャッジ時間 | 15,271 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 RE * 1 |
| other | AC * 11 RE * 33 |
ソースコード
N,M=map(int,input().split())
A=list(map(int,input().split()))
for i in range(N):
if A[i]>1:
if i%2==0:
print("First")
else:
print("Second")
sys.exit()
if N%2==0 or M!=0:
print("Second")
else:
print("First")
titia