結果
| 問題 |
No.2322 MMA文字列
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-05-28 13:30:55 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 211 bytes |
| コンパイル時間 | 1,721 ms |
| コンパイル使用メモリ | 192,848 KB |
| 最終ジャッジ日時 | 2025-02-13 09:41:30 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 WA * 6 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
string s;
cin >> s;
if (s == "MMA") cout << "Yes" << endl;
else cout << "No" << endl;
return 0;
}