結果

問題 No.99 ジャンピング駒
ユーザー bdisheoshepehabdisheoshepeha
提出日時 2018-12-20 14:13:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 72,504 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-26 00:58:54
合計ジャッジ時間 1,481 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
4,348 KB
testcase_01 AC 44 ms
4,348 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
権限があれば一括ダウンロードができます

ソースコード

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