結果

問題 No.908 うしたぷにきあくん文字列
ユーザー oioi92755
提出日時 2019-11-06 19:08:15
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 254 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 54,648 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-15 00:21:45
合計ジャッジ時間 1,180 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 12 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;

int main(){
    string S;
    
    cin >> S;
    if(S == "u s h i t a p u n i c h i a k u n"){
        cout << "Yes" << endl;
    }
   else {
        cout << "No" << endl;
    }
    return 0;
}
0