結果
| 問題 | No.3503 Brackets Stack Query 2 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-16 18:35:15 |
| 言語 | PyPy3 (7.3.23) |
| 結果 |
AC
|
| 実行時間 | 342 ms / 2,000 ms |
| + 495µs | |
| コード長 | 719 bytes |
| 記録 | |
| コンパイル時間 | 213 ms |
| コンパイル使用メモリ | 95,852 KB |
| 実行使用メモリ | 260,380 KB |
| 最終ジャッジ日時 | 2026-08-16 18:35:37 |
| 合計ジャッジ時間 | 11,659 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 30 |
ソースコード
#https://yukicoder.me/submissions/1160875 写経
import sys
input = sys.stdin.readline
Q = int(input())
A = []
X = []
D = {}
for i in range(Q):
q = input().split()
if q[0] == '1':
x = q[1]
A.append(x)
X.append((x, len(A) - 1))
if len(X) >= 3 and X[-1][0] == ')' and X[-2][0] == '|' and X[-3][0] == '(':
a = X.pop()
b = X.pop()
c = X.pop()
D[a[1]] = (b, c)
else:
k = A.pop()
if X and X[-1][0] == k and X[-1][1] == len(A): # 復元不要
X.pop()
else:
X.append(D[len(A)][1])
X.append(D[len(A)][0])
if X == []:
print('Yes')
else:
print('No')