結果
問題 | No.2322 MMA文字列 |
ユーザー |
|
提出日時 | 2023-05-28 14:27:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 19 ms / 2,000 ms |
コード長 | 278 bytes |
コンパイル時間 | 1,790 ms |
コンパイル使用メモリ | 195,516 KB |
最終ジャッジ日時 | 2025-02-13 11:29:57 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h>#include "atcoder/modint"using i64 = long long;using Fp = atcoder::modint998244353;int main() {std::string S;std::cin >> S;if (S[0] == S[1] and S[0] != S[2]) std::cout << "Yes" << std::endl;else std::cout << "No" << std::endl;}