結果
問題 | No.1285 ゴミ捨て |
ユーザー |
|
提出日時 | 2020-11-13 22:30:14 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 481 bytes |
コンパイル時間 | 729 ms |
コンパイル使用メモリ | 66,900 KB |
最終ジャッジ日時 | 2025-01-15 23:35:37 |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 |
other | AC * 12 WA * 10 |
ソースコード
#include<iostream> using namespace std; int main(){ int n; cin >> n; bool odd = false; bool even = true; for(int i=0;i < n;i++){ int a; cin >> a; if(a % 2 == 0) even = true; else odd = true; } if(n == 1) cout << 0 << endl; else if(n == 2){ if(odd && even) cout << 0 << endl; else cout << 1 << endl; }else if(n == 3){ cout << 1 << endl; }else{ cout << 2 << endl; } return 0; }