結果

問題 No.908 うしたぷにきあくん文字列
ユーザー oioi92755
提出日時 2019-11-06 19:13:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 272 bytes
コンパイル時間 690 ms
コンパイル使用メモリ 67,160 KB
最終ジャッジ日時 2025-01-08 02:22:16
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 12 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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