結果
| 問題 |
No.932 解法破綻!高橋君
|
| コンテスト | |
| ユーザー |
lice6613
|
| 提出日時 | 2019-12-09 18:17:56 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 362 bytes |
| コンパイル時間 | 640 ms |
| コンパイル使用メモリ | 65,092 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-23 02:22:30 |
| 合計ジャッジ時間 | 1,196 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main() {
string S;
cin >> S;
bool flag = false;
if (S.find("WA") != string::npos)
flag = true;
if (S.find("TLE") != string::npos)
flag = true;
if (S.find("MLE") != string::npos)
flag = true;
if (!flag)
cout << "Done!" << endl;
else
cout << "Failed..." << endl;
}
lice6613