結果

問題 No.795 Restrictions!!!!!!!!!!!!!!
ユーザー nao109
提出日時 2021-08-28 02:55:29
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 158,968 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-21 10:57:24
合計ジャッジ時間 2,643 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main(){
    string a,b;
    cin >> a >> b;
    if(b[b.size()-1]==2||b[b.size()-1]==4||b[b.size()-1]==6||b[b.size()-1]==8||b[b.size()-1]==0) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0