結果

問題 No.1591 Two Digits
ユーザー LV3zJigVW57oPGy
提出日時 2022-10-28 16:53:40
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 196 bytes
コンパイル時間 1,042 ms
コンパイル使用メモリ 157,136 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 20:36:43
合計ジャッジ時間 1,664 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 12 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h> 
using namespace std;
#include <ios>
#include <iomanip>
  
int main() {
  int a;
  cin >> a;
  if(a/100 !=0){
   cout<<"No";
  }
    else{
    cout <<"Yes";
  }
  }
      
0