結果

問題 No.908 うしたぷにきあくん文字列
ユーザー Osmium_1008
提出日時 2019-10-18 21:33:52
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 206 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 66,304 KB
最終ジャッジ日時 2025-01-07 22:41:51
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    string in;
    while(cin>>in){
        if(in.size()!=1){
            cout<<"No"<<endl;
            return 0;
        }
    }
    cout<<"Yes"<<endl;
}
0