結果
| 問題 |
No.3141 Balancing with X=>O Flip
|
| コンテスト | |
| ユーザー |
titia
|
| 提出日時 | 2025-05-16 21:32:13 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 48 ms / 2,000 ms |
| コード長 | 194 bytes |
| コンパイル時間 | 127 ms |
| コンパイル使用メモリ | 12,160 KB |
| 実行使用メモリ | 10,496 KB |
| 最終ジャッジ日時 | 2025-05-17 03:13:46 |
| 合計ジャッジ時間 | 2,081 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
import sys
input = sys.stdin.readline
N=int(input())
S=input().strip()
x=0
y=0
for s in S:
if s=="(":
x+=1
else:
y+=1
if x==y:
print("Yes")
else:
print("No")
titia