結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
spb9876
|
| 提出日時 | 2017-10-11 12:04:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 258 bytes |
| コンパイル時間 | 665 ms |
| コンパイル使用メモリ | 58,580 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-17 09:21:57 |
| 合計ジャッジ時間 | 1,415 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 5 |
| other | AC * 15 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <utility>
using namespace std;
int main(void){
string s;
cin >> s;
if(s.find("575")!=string::npos)
cout << "YES" << "\n";
else
cout << "NO" << "\n";
return 0;
}
spb9876