結果

問題 No.558 575検出するやつ
ユーザー yorry2101yorry2101
提出日時 2023-05-06 23:49:21
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 543 ms
コンパイル使用メモリ 69,768 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-24 04:00:36
合計ジャッジ時間 1,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
#define YES cout << "YES" << endl
#define NO cout << "NO" << endl

int main(void){
    string s;
    cin >> s;
    bool Isfsf = false;
    for (int i = 0; i < (int)s.size()-2; i++) {
        if (s.substr(i, 3) == "575") Isfsf = true;
    }
    Isfsf ? YES : NO;
}
0