結果
問題 | No.3142 Balancing with O=>X Flip |
ユーザー |
![]() |
提出日時 | 2025-05-16 23:13:58 |
言語 | Go (1.23.4) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 188 bytes |
コンパイル時間 | 11,862 ms |
コンパイル使用メモリ | 238,308 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-05-16 23:54:41 |
合計ジャッジ時間 | 13,893 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 WA * 1 |
ソースコード
package main import . "fmt" import . "strings" func main() { var n,s string Scan(&n,&s) if Count(s,"(")==Count(s,")")&&Contains(s,"()"){ Println("Yes") } else{ Println("No") } }