結果
| 問題 | No.2322 MMA文字列 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-04-01 15:16:46 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 167 bytes | 
| コンパイル時間 | 565 ms | 
| コンパイル使用メモリ | 66,824 KB | 
| 最終ジャッジ日時 | 2025-02-20 18:54:31 | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 13 WA * 6 | 
ソースコード
#include <iostream>
using namespace std;
int main(){
    string s;
    cin >> s;
    if(s == "MMA"){
        cout << "Yes" << endl;
    }else cout << "No" << endl;
}
            
            
            
        