結果
問題 | No.558 575検出するやつ |
ユーザー |
![]() |
提出日時 | 2020-03-21 06:08:37 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 221 bytes |
コンパイル時間 | 5,045 ms |
コンパイル使用メモリ | 211,896 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-17 16:30:17 |
合計ジャッジ時間 | 5,118 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 5 |
other | AC * 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;}