結果
| 問題 | No.795 Restrictions!!!!!!!!!!!!!! |
| コンテスト | |
| ユーザー |
himo
|
| 提出日時 | 2019-09-17 17:44:55 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 205 bytes |
| 記録 | |
| コンパイル時間 | 1,278 ms |
| コンパイル使用メモリ | 173,704 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2026-03-29 03:47:02 |
| 合計ジャッジ時間 | 2,354 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 20 |
ソースコード
#include "bits/stdc++.h"
using namespace std;
int main(){
int n,m;
cin >> n >>m;
if(n%2==0&&m%2==0){
cout <<"Yes"<<endl;
}
else if(n*10==m ){
cout <<"Yes"<<endl;
}
else{
cout <<"No"<<endl;
}
}
himo