結果
| 問題 | No.908 うしたぷにきあくん文字列 |
| コンテスト | |
| ユーザー |
ajiruajiru
|
| 提出日時 | 2019-12-05 08:11:10 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 341 bytes |
| 記録 | |
| コンパイル時間 | 515 ms |
| コンパイル使用メモリ | 73,324 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-26 11:24:13 |
| 合計ジャッジ時間 | 1,925 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 13 WA * 5 |
ソースコード
#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;
}
ajiruajiru