結果

問題 No.558 575検出するやつ
ユーザー suppy193suppy193
提出日時 2020-03-20 15:01:45
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 20,224 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 04:55:34
合計ジャッジ時間 922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,944 KB
testcase_02 WA -
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 0 ms
6,940 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 0 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 0 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:8:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |     scanf("%s", s);
      |     ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int main(void)
{
    int i;
    int flag;
    char s[101];
    scanf("%s", s);
    flag = 0;
    for(i = 0; s[i + 2] =='\0';i++){
        if(s[i] == '5' && s[i + 1] == '7' && s[i + 2] == '5'){
            flag = 1;
            break;
        }
    }
    if(flag == 1){
        printf("YeS\n");
    }
    else {
        printf("NO\n");
    }
    
    return 0;
}
0