結果
| 問題 | No.932 解法破綻!高橋君 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-11-29 22:01:51 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 568 bytes | 
| コンパイル時間 | 2,058 ms | 
| コンパイル使用メモリ | 192,780 KB | 
| 最終ジャッジ日時 | 2025-01-08 05:58:52 | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 5 WA * 15 | 
ソースコード
#include <bits/stdc++.h>
using u32 = uint32_t;
using u64 = uint64_t;
using i32 = int32_t;
using i64 = int64_t;
//“AC”, “WA”, “TLE”, “MLE”)
// TLE” “MLE” “WA”
// "AC"
//W, M, L, E, T << zle
//C << dobrze
int main()
{
    std::ios_base::sync_with_stdio(0);
    std::string str;
    std::getline(std::cin, str);
    if (str.find_first_of("WMLET") != std::string::npos)
    {
        std::cout << "Failed ...\n";
    }
    else if (str.find_first_of("C") != std::string::npos)
    {
        std::cout << "Done!\n";
    }
    return 0;
}
            
            
            
        