結果
| 問題 | No.558 575検出するやつ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-10-12 18:30:34 |
| 言語 | C90 (gcc 15.2.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 188 bytes |
| 記録 | |
| コンパイル時間 | 199 ms |
| コンパイル使用メモリ | 36,060 KB |
| 最終ジャッジ日時 | 2026-02-24 00:51:15 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 15 |
ソースコード
#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;
}