結果
問題 | No.558 575検出するやつ |
ユーザー | severrabaen |
提出日時 | 2019-01-02 22:24:02 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 204 bytes |
コンパイル時間 | 1,515 ms |
コンパイル使用メモリ | 158,304 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 20:45:17 |
合計ジャッジ時間 | 2,208 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ string h; cin>>h; for(int i=2;i<h.length();++i){ if(h[i]=='5'&&h[i-1]=='7'&&h[i-2]=='5'){ cout<<"YES"<<endl; return 0; } } cout<<"NO"<<endl; }