結果

問題 No.558 575検出するやつ
ユーザー shallow
提出日時 2017-10-12 18:30:34
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 20,608 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-17 10:53:23
合計ジャッジ時間 797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |         scanf("%s", S);
      |         ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>
int main() {
	char S[100] = {'\0'};
	scanf("%s", S);
	if (strstr(S, "575") != NULL) {
		printf("YES\n");
	} else {
		printf("NO\n");
	}
	return 0;
}
0