結果

問題 No.2836 Comment Out
ユーザー Pres1dentPres1dent
提出日時 2024-08-09 23:14:02
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 199,392 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-09 23:14:08
合計ジャッジ時間 5,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 52
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
// 0 0 0
// 1 0 0
// 2 1 0
// 2 0 -1
// 3 1 0

// 0 0 0
// 1 1 0
// 1 0 -1
// 2 1 0

// 1 0
// 0 0
// 0 1
// 2 1
// 1 2
// 

// x x  0 0 0 0 0
// x x  0 1 1 0 0
// x x -1 0 1 0 0
// x x  0 1 2 0 

// 3 0 0 3 possible?
// 1 0 0 0
// 2 1 0 0
// 2 0 -1 0
// 3 1 0 0
// 3 1 0 1
// 3 0 -1 1
// 3 1 0 2

int main() {
  int n; cin >> n;
  bool yes = false;
  for (int i = 0; i < n; i++) {
    int a; cin >> a;
    if (a == 1 or a == 0) yes = true;
  }
  if (yes) cout << "Yes" << endl;
  else cout << "No" << endl;

}
0