結果
問題 | No.2836 Comment Out |
ユーザー |
|
提出日時 | 2024-08-09 21:48:29 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 85 ms / 2,000 ms |
コード長 | 282 bytes |
コンパイル時間 | 540 ms |
コンパイル使用メモリ | 66,408 KB |
最終ジャッジ日時 | 2025-02-23 21:31:21 |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 52 |
ソースコード
#include <iostream> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { int a; cin >> a; if (a <= 1) { cout << "Yes" << endl; return 0; } } cout << "No" << endl; }