結果

問題 No.908 うしたぷにきあくん文字列
ユーザー 🍮かんプリン🍮かんプリン
提出日時 2019-10-18 22:23:27
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 2,364 ms
コンパイル使用メモリ 156,524 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 17:14:56
合計ジャッジ時間 2,487 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
#define REP(i, n) for(int i = 0; i < int(n); i++)
#define FOR(i,n,m) for(int i = int(n); i < int(m); i++)
using namespace std;
typedef long long ll;
const int MOD = 1e9 + 7;
const int INF = 1e9 + 6;
const ll LLINF = 1e18 + 1;

int main() {
    int i = 0;
    char c;
    while ((c = getchar()) != '\n') {
        if (i % 2 == 0 && c == ' ') {
            puts("No");
            return 0;
        }
        if (i % 2 == 1 && c != ' '){
            puts("No");
            return 0;
        }
        i++;
    }
    puts("Yes");
    return 0;
}
0