結果
| 問題 | 
                            No.795 Restrictions!!!!!!!!!!!!!!
                             | 
                    
| コンテスト | |
| ユーザー | 
                             greentea011
                         | 
                    
| 提出日時 | 2019-03-18 09:28:09 | 
| 言語 | C++11(廃止可能性あり)  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 199 bytes | 
| コンパイル時間 | 408 ms | 
| コンパイル使用メモリ | 54,036 KB | 
| 実行使用メモリ | 6,948 KB | 
| 最終ジャッジ日時 | 2024-07-17 22:53:24 | 
| 合計ジャッジ時間 | 1,640 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | WA * 20 | 
ソースコード
#include <iostream>
int main() {
    int m,n;
    std::cin >> m >> n;
    int d = (n-(m%2)*10);
    if ((d>=0)&&(d%2==0)) std::cout << "Yes" << std::endl;
    else std::cout << "No" << std::endl;
}
            
            
            
        
            
greentea011