結果
問題 | No.558 575検出するやつ |
ユーザー |
![]() |
提出日時 | 2018-05-18 01:47:04 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 538 bytes |
コンパイル時間 | 595 ms |
コンパイル使用メモリ | 73,284 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-28 13:40:56 |
合計ジャッジ時間 | 1,299 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 15 |
ソースコード
#include <iostream> #include <string> #include <math.h> #include <vector> #include<stdio.h> #include<algorithm> #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,n) FOR(i,0,n) #define all(x) (x).begin(),(x).end() typedef long long ll; #define SZ(x) ((int)(x).size()) using namespace std; int main(){ string s; bool flag=false; cin >> s; REP(i, SZ(s)-2) { if (s[i] == '5'&&s[i+1]=='7'&&s[i+2]=='5') { flag = true; break; } } if (flag) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }