結果

問題 No.908 うしたぷにきあくん文字列
ユーザー earlgray283
提出日時 2019-10-18 21:28:54
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 1,121 ms
コンパイル使用メモリ 27,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 14:56:36
合計ジャッジ時間 1,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 12 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
int main(){
    char str[200],*ans="u s h i t a p u n i c h i a k u n";
    scanf("%[^\n\r]",str);
    //printf("%s",str);
    printf("%s\n",!strcmp(str,ans)?"Yes":"No");
    return 0;
}
0