結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー kafuka97
提出日時 2019-03-15 21:23:06
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 28,032 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-01 20:12:47
合計ジャッジ時間 898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void){
	long long int n,m;
	scanf("%lld%lld",&n,&m);
	if((n%2==0 && m%2==0) || n*10==m) printf("Yes\n");
	else printf("No\n");
	return 0;
}
0