結果

問題 No.2322 MMA文字列
ユーザー k82b
提出日時 2023-05-28 13:31:38
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 2,063 ms
コンパイル使用メモリ 192,724 KB
最終ジャッジ日時 2025-02-13 09:45:30
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long

void solve();

signed main(){
	cin.tie(nullptr)->sync_with_stdio(false);
	cout<<fixed<<setprecision(15);

	int T=1;

	//cin>>T;
	
	while(T--)solve();

	return 0;
}

void solve(){
	string S;cin>>S;
	cout<<(S[0]==S[1]&&S[0]!=S[2]?"Yes":"No")<<endl;
}
0