結果
| 問題 | No.932 解法破綻!高橋君 |
| コンテスト | |
| ユーザー |
square1001
|
| 提出日時 | 2020-01-21 22:26:27 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 7 ms / 2,000 ms |
| コード長 | 280 bytes |
| 記録 | |
| コンパイル時間 | 409 ms |
| コンパイル使用メモリ | 63,104 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-06 10:02:09 |
| 合計ジャッジ時間 | 1,474 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#include <string>
#include <iostream>
using namespace std;
int main() {
string s;
cin >> s;
if(s.find("WA") != string::npos || s.find("TLE") != string::npos || s.find("MLE") != string::npos) {
cout << "Failed..." << endl;
}
else {
cout << "Done!" << endl;
}
return 0;
}
square1001