結果
問題 | No.558 575検出するやつ |
ユーザー | じゃがりこ |
提出日時 | 2018-08-10 17:50:34 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 290 bytes |
コンパイル時間 | 150 ms |
コンパイル使用メモリ | 28,160 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-23 05:47:49 |
合計ジャッジ時間 | 982 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 15 |
ソースコード
#include <stdio.h> #include <string.h> int main(void) { char S[101]; int i,c=0; scanf("%s", S); for (i = 0; S[i] != 0; i++) { if (strncmp(&S[i], "575", 3) == 0) { c++; } } if (c > 0) { printf("YES"); } else { printf("NO"); } }