結果

問題 No.1852 Divide or Reduce
ユーザー %20%20
提出日時 2022-02-27 00:27:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 199,684 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 21:56:17
合計ジャッジ時間 9,452 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 225 ms
5,376 KB
testcase_02 AC 226 ms
5,376 KB
testcase_03 AC 218 ms
5,376 KB
testcase_04 AC 228 ms
5,376 KB
testcase_05 AC 225 ms
5,376 KB
testcase_06 AC 195 ms
5,376 KB
testcase_07 AC 187 ms
5,376 KB
testcase_08 AC 197 ms
5,376 KB
testcase_09 AC 196 ms
5,376 KB
testcase_10 AC 199 ms
5,376 KB
testcase_11 AC 199 ms
5,376 KB
testcase_12 AC 195 ms
5,376 KB
testcase_13 AC 198 ms
5,376 KB
testcase_14 AC 196 ms
5,376 KB
testcase_15 AC 196 ms
5,376 KB
testcase_16 AC 488 ms
5,376 KB
testcase_17 AC 493 ms
5,376 KB
testcase_18 AC 483 ms
5,376 KB
testcase_19 AC 357 ms
5,376 KB
testcase_20 AC 511 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
	int Q;cin>>Q;
	for(int q=0;q<Q;++q){
		int N;cin>>N;
		int g=0,m=1e9;
		bool G=false;
		for(int i=0;i<N;++i){
			int A;cin>>A;
			g^=A%2^1;
			m=min(m,A);
		}
		if(g){
			G=true;
		}else if(N%2){
			G=false;
		}else{
			G=m%2==0;
		}
		cout<<(G?"First":"Second")<<"\n";
	}
	return 0;
}
0