結果
| 問題 |
No.932 解法破綻!高橋君
|
| コンテスト | |
| ユーザー |
NOSS
|
| 提出日時 | 2019-11-29 22:01:37 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 8 ms / 2,000 ms |
| コード長 | 357 bytes |
| コンパイル時間 | 611 ms |
| コンパイル使用メモリ | 70,032 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-11-20 22:14:48 |
| 合計ジャッジ時間 | 1,188 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
string s;
cin >> s;
bool ok = true;
if(s.find("WA") != s.npos) ok = false;
if(s.find("TLE") != s.npos) ok = false;
if(s.find("MLE") != s.npos) ok = false;
cout << (ok ? "Done!" : "Failed...") << endl;
return 0;
}
NOSS