結果
| 問題 |
No.3142 Balancing with O=>X Flip
|
| コンテスト | |
| ユーザー |
ID 21712
|
| 提出日時 | 2025-05-16 23:12:18 |
| 言語 | Go (1.23.4) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 170 bytes |
| コンパイル時間 | 16,553 ms |
| コンパイル使用メモリ | 262,112 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2025-05-16 23:12:38 |
| 合計ジャッジ時間 | 16,942 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 23 WA * 1 |
ソースコード
package main
import . "fmt"
import . "strings"
func main() {
var n,s string
Scan(&n,&s)
if Count(s,"(")==Count(s,")"){
Println("Yes")
} else{
Println("No")
}
}
ID 21712