結果

問題 No.3141 Balancing with X=>O Flip
ユーザー pitP
提出日時 2025-05-16 21:25:34
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2025-05-17 03:13:23
合計ジャッジ時間 2,024 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
wa = sum([1 if S[i] == '(' else -1 for i in range(N)])
print("Yes" if (N % 2 == 0 and wa == 0) else "No")
0