結果
問題 | No.558 575検出するやつ |
ユーザー | suppy193 |
提出日時 | 2020-03-20 14:58:55 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 291 bytes |
コンパイル時間 | 113 ms |
コンパイル使用メモリ | 20,224 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 04:48:42 |
合計ジャッジ時間 | 902 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 0 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 0 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 0 ms
6,940 KB |
testcase_17 | AC | 1 ms
6,944 KB |
testcase_18 | AC | 0 ms
6,940 KB |
testcase_19 | WA | - |
コンパイルメッセージ
main.c: In function ‘main’: main.c:11:13: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration] 11 | exit(0); | ^~~~ main.c:2:1: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’ 1 | #include <stdio.h> +++ |+#include <stdlib.h> 2 | main.c:11:13: warning: incompatible implicit declaration of built-in function ‘exit’ [-Wbuiltin-declaration-mismatch] 11 | exit(0); | ^~~~ main.c:11:13: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’ main.c:7:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 7 | scanf("%s", s); | ^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void) { int i; char s[101]; scanf("%s", s); for(i = 0; s[i + 2] =='\0';i++){ if(s[i] == '5' && s[i + 1] == '7' && s[i + 2] == '5'){ printf("YeS\n"); exit(0); } } printf("NO\n"); return 0; }