結果

問題 No.908 うしたぷにきあくん文字列
ユーザー ajiruajiru
提出日時 2019-12-05 08:11:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 341 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 63,360 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-16 06:40:20
合計ジャッジ時間 1,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main(void) {
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	string s;
	bool is_u_s_h_i_t_a_p_u_n_i_c_h_i_a_k_u_n = true;
	while (cin >> s) {
		if (s.size() > 1) 
			is_u_s_h_i_t_a_p_u_n_i_c_h_i_a_k_u_n = false;
	}
	cout << 
		(is_u_s_h_i_t_a_p_u_n_i_c_h_i_a_k_u_n ?
		"Yes" : "No");

	return 0;
}
0