結果

問題 No.99 ジャンピング駒
ユーザー HAHAHAHAHAHA
提出日時 2014-12-11 13:04:16
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 50,360 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-02 13:58:40
合計ジャッジ時間 1,440 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
using namespace std;

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