結果
問題 | No.3141 Balancing with X=>O Flip |
ユーザー |
👑 ![]() |
提出日時 | 2025-05-16 21:22:13 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 6 ms / 2,000 ms |
コード長 | 237 bytes |
コンパイル時間 | 1,736 ms |
コンパイル使用メモリ | 197,788 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-05-17 03:12:36 |
合計ジャッジ時間 | 2,614 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define all(p) p.begin(), p.end() int main(){ int N; cin >> N; string S; cin >> S; sort(all(S)); cout << (N % 2 == 0 && S[N / 2] != S[N / 2 - 1] ? "Yes\n" : "No\n"); }