結果
| 問題 | 
                            No.795 Restrictions!!!!!!!!!!!!!!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2020-06-04 01:57:52 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 269 bytes | 
| コンパイル時間 | 666 ms | 
| コンパイル使用メモリ | 64,260 KB | 
| 実行使用メモリ | 6,824 KB | 
| 最終ジャッジ日時 | 2024-11-27 04:56:53 | 
| 合計ジャッジ時間 | 1,348 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 20 | 
ソースコード
#include<iostream>
#define REP(i,n) for(int i=0;i<n;i++)
using namespace std;
int main() {
    int n, m;
    cin >> n >> m;
    n += m/10;
    m = m%10;
    if(n%2==0 && m%2==0) {
        cout << "Yes" << endl;
    } else {
        cout << "No" << endl;
    }
    
}