結果

問題 No.99 ジャンピング駒
ユーザー bdisheoshepeha
提出日時 2018-12-20 14:13:46
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 685 ms
コンパイル使用メモリ 71,244 KB
最終ジャッジ日時 2025-01-06 19:43:30
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<stdlib.h>
int main(){
	int size=0;
	std::cin>>size;
	std::vector<int> flg(size);
	std::vector<int> array(size);
	for(int i=0;i<size;i++){
		std::cin>>array[i];
	}
	int temp=0;
	
	int yuyu=0;
	for(int n=0;n<size;n++){
		if(flg[n]==0)yuyu++;
	}
	printf("%d\n",size%2);
	return 0;
}
0