結果

問題 No.99 ジャンピング駒
ユーザー dora_maruta
提出日時 2015-01-03 13:28:00
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 176 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 54,520 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-13 01:13:42
合計ジャッジ時間 1,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>

int main(){
	int n;
	std::cin >> n;
	for (int i = 0; i < n; ++i){
		int a;
		std::cin >> a;
	}
	std::cout << (n % 2 == 0 ? 0 : 1) << std::endl;
	return 0;
}
0