結果
問題 | No.558 575検出するやつ |
ユーザー | suppy193 |
提出日時 | 2020-03-20 15:02:58 |
言語 | C90 (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 381 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 19,968 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-14 06:02:01 |
合計ジャッジ時間 | 868 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 0 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 0 ms
6,816 KB |
testcase_05 | AC | 0 ms
6,820 KB |
testcase_06 | AC | 0 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 1 ms
6,820 KB |
testcase_18 | AC | 1 ms
6,816 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); | ^~~~~~~~~~~~~~
ソースコード
#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;}