結果
問題 | No.3142 Balancing with O=>X Flip |
ユーザー |
|
提出日時 | 2025-05-16 21:38:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 47 ms / 2,000 ms |
コード長 | 159 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 66,160 KB |
最終ジャッジ日時 | 2025-05-16 23:53:21 |
合計ジャッジ時間 | 2,138 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
n=int(input()) s=str(input()) tmp=0 for e in s: if e=="(": tmp+=1 else: tmp-=1 if tmp<0: exit(print("No")) if tmp==0: print("Yes") else: print("No")