結果
問題 |
No.795 Restrictions!!!!!!!!!!!!!!
|
ユーザー |
![]() |
提出日時 | 2019-06-02 19:59:37 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 292 bytes |
コンパイル時間 | 1,160 ms |
コンパイル使用メモリ | 158,020 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-17 20:14:33 |
合計ジャッジ時間 | 1,889 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 20 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int A,B; cin >> A >> B; if(B%2 == 1){ cout << "No" << endl; }else if(A%2==0){ cout << "Yes" <<endl; }else if(B>=10){ cout << "Yes" <<endl; }else{ cout << "No" << endl; } }