結果

問題 No.1591 Two Digits
ユーザー shishimaiotoshi
提出日時 2021-08-19 22:19:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 272 bytes
コンパイル時間 1,331 ms
コンパイル使用メモリ 165,920 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 00:06:34
合計ジャッジ時間 2,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define rep(i, n, o) for(int i = o;i < (n);i++)
#define ou(x) cout << x << endl
#define ll long long
#define re return 0

int main(){
    string s;
    cin >> s;
    if(s.length() == 2) ou("Yes");
    else ou("No");
    re;
}
0