結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
aka_rice
|
| 提出日時 | 2017-09-25 06:13:55 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 205 bytes |
| コンパイル時間 | 1,757 ms |
| コンパイル使用メモリ | 166,480 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-14 12:54:16 |
| 合計ジャッジ時間 | 2,509 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 5 |
| other | WA * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
string s;
cin >> s;
if(s.find("575")!=-1) cout << "Yes" << endl;
else cout <<"No" << endl;
return 0;
}
aka_rice