結果

問題 No.908 うしたぷにきあくん文字列
ユーザー qsako6qsako6
提出日時 2019-10-18 21:59:01
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 984 ms
コンパイル使用メモリ 102,492 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 16:00:26
合計ジャッジ時間 1,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <algorithm>
#include <utility>
#include <functional>
#include <string>
#include <vector>
#include <deque>
#include <queue>
#include <stack>
#include <list>
#include <set>
#include <map>
#include <unordered_map>
#include <iomanip>
#include <numeric>
#include <complex>
#include <cassert>
#include <climits>

using namespace std;
using i64 = int64_t;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()

int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  // string s;
  // cin >> s;
  char s[110];
  cin.getline(s, sizeof(s));
  string ss = s;
  // cout << ss << endl;
  rep(i, ss.size()){
    if(i & 1){
      if(s[i] != ' ') {
        cout << "No" << endl;
        return 0;
      }
    }else{
      if(!((0 <= (s[i] - 'a')) && ((s[i] - 'a') < 26))){
        cout << "No" << endl;
        return 0;
      }
    }
  }
  cout << "Yes" << endl;

  return 0;
}
0