結果

問題 No.1945 Go Push!
ユーザー atjh16
提出日時 2022-08-12 17:31:20
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 190,448 KB
最終ジャッジ日時 2025-01-30 20:29:48
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int n;
int a[200000];
bool f;

int main()
{
	cin >> n;

	for (int i = 0; i < n; i++)
		cin >> a[i];

	if(n & 1)
		cout << "First" << endl;
	else
		cout << "Second" << endl;
}
0