結果

問題 No.908 うしたぷにきあくん文字列
ユーザー yuma220284
提出日時 2020-03-08 14:52:24
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 184 bytes
コンパイル時間 1,418 ms
コンパイル使用メモリ 158,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 05:02:32
合計ジャッジ時間 2,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int main() {
	string S;
	while (cin >> S) {
		if (S.size() != 1) {
			cout << "No" << endl;
			return 0;
		}
	}
	cout << "Yes" << endl;
}
0