結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
tokutaro
|
| 提出日時 | 2020-03-21 06:07:48 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 221 bytes |
| コンパイル時間 | 4,300 ms |
| コンパイル使用メモリ | 212,048 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-17 16:28:02 |
| 合計ジャッジ時間 | 5,013 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 5 |
| other | WA * 15 |
ソースコード
#include <iostream>
#include <regex>
using namespace std;
int main() {
regex re("575");
string s;
cin >> s;
if (regex_search(s, re)) cout << "Yes";
else cout << "No";
cout << endl;
return 0;
}
tokutaro