結果
問題 | No.99 ジャンピング駒 |
ユーザー | bdisheoshepeha |
提出日時 | 2018-12-20 14:13:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 325 bytes |
コンパイル時間 | 705 ms |
コンパイル使用メモリ | 73,872 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-25 08:58:04 |
合計ジャッジ時間 | 1,496 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
6,812 KB |
testcase_01 | AC | 45 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
ソースコード
#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; }