結果
問題 | No.932 解法破綻!高橋君 |
ユーザー |
![]() |
提出日時 | 2019-11-29 21:50:55 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 231 bytes |
コンパイル時間 | 5,680 ms |
コンパイル使用メモリ | 280,576 KB |
実行使用メモリ | 91,332 KB |
最終ジャッジ日時 | 2024-11-20 21:57:01 |
合計ジャッジ時間 | 6,479 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 19 MLE * 1 |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = long long; int main() { string s; cin >> s; if (regex_match(s, regex("AC(,AC)*"))) cout << "Done!" << endl; else cout << "Failed..." << endl; return 0; }