結果
| 問題 | No.558 575検出するやつ |
| コンテスト | |
| ユーザー |
moko_freedom
|
| 提出日時 | 2017-08-25 22:43:26 |
| 言語 | C++11 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
不安定
|
| 実行時間 | 1 ms / 2,000 ms |
| + 369µs | |
| コード長 | 297 bytes |
| 記録 | |
| コンパイル時間 | 864 ms |
| コンパイル使用メモリ | 174,008 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-18 15:46:39 |
| 合計ジャッジ時間 | 2,313 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> PI;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
string s;
cin >> s;
if (s.find("575") != -1) {
cout << "YES" << endl;
}
else {
cout << "NO" << endl;
}
return 0;
}
moko_freedom