結果

問題 No.2778 Is there Same letter?
ユーザー 赤信号
提出日時 2024-06-07 21:48:25
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,757 ms
コンパイル使用メモリ 259,164 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-26 07:42:32
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")

#ifdef LOCAL
#include "algo/debug_ver3.hpp"
#else
#define debug(...)
#define debugArr(...)
#endif

#include <bits/stdc++.h>

using namespace std;

int main() {
	cin.tie(nullptr);
	ios::sync_with_stdio(false);

	int n;
	string s;
	cin >> n >> s;

	set<char> st;
	for (char ch : s) {
		st.insert(ch);
	}

	cout << (n != int(st.size()) ? "Yes" : "No") << '\n';
}
0