結果

問題 No.558 575検出するやつ
ユーザー th90tk297th90tk297
提出日時 2017-10-23 21:31:44
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 67,532 KB
最終ジャッジ日時 2025-01-05 03:26:15
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
using namespace std;
int main() {
	string s; cin >> s;
	if (s.size() < 3) { cout << "NO\n"; return 0; }
	for (int i = 0; i < s.size() - 2; i++) {
		if (s.substr(i, 3) == "575") {
			cout << "YES\n"; return 0;
		}
	}
	cout << "NO\n";
	return 0;
}
0