結果
| 問題 | No.932 解法破綻!高橋君 | 
| コンテスト | |
| ユーザー |  lice6613 | 
| 提出日時 | 2019-12-09 18:17:55 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 8 ms / 2,000 ms | 
| コード長 | 362 bytes | 
| コンパイル時間 | 509 ms | 
| コンパイル使用メモリ | 63,616 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-06-23 02:22:28 | 
| 合計ジャッジ時間 | 1,274 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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;
}
            
            
            
        