結果

問題 No.2282 Boxed Nim
ユーザー lllllll88938494lllllll88938494
提出日時 2023-07-07 23:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 146 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 84,260 KB
最終ジャッジ日時 2024-07-21 20:10:34
合計ジャッジ時間 2,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,460 KB
testcase_01 AC 38 ms
52,300 KB
testcase_02 AC 38 ms
52,280 KB
testcase_03 AC 37 ms
53,248 KB
testcase_04 AC 38 ms
53,016 KB
testcase_05 AC 38 ms
52,072 KB
testcase_06 AC 38 ms
52,280 KB
testcase_07 AC 38 ms
52,764 KB
testcase_08 AC 38 ms
52,076 KB
testcase_09 AC 63 ms
83,068 KB
testcase_10 AC 62 ms
82,680 KB
testcase_11 AC 63 ms
82,672 KB
testcase_12 AC 62 ms
83,440 KB
testcase_13 AC 64 ms
84,260 KB
testcase_14 AC 60 ms
79,160 KB
testcase_15 AC 59 ms
78,144 KB
testcase_16 AC 60 ms
79,640 KB
testcase_17 AC 59 ms
79,488 KB
testcase_18 AC 59 ms
78,236 KB
testcase_19 AC 63 ms
83,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
ans = 0
for i in range(n):
	if a[i] == 0:
		ans ^= 1
	
print('First' if ans == 1 else 'Second')
		
0