結果

問題 No.2398 ヒドラ崩し
ユーザー 👑 testestesttestestest
提出日時 2023-06-28 09:28:01
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 983 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 310,912 KB
最終ジャッジ日時 2024-07-05 04:38:03
合計ジャッジ時間 5,802 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,344 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 43 ms
52,352 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 38 ms
51,968 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 39 ms
51,584 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 40 ms
51,584 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 39 ms
52,352 KB
testcase_21 AC 41 ms
52,480 KB
testcase_22 AC 40 ms
52,480 KB
testcase_23 AC 41 ms
52,224 KB
testcase_24 AC 51 ms
62,208 KB
testcase_25 AC 127 ms
81,144 KB
testcase_26 AC 179 ms
106,752 KB
testcase_27 AC 161 ms
118,656 KB
testcase_28 AC 194 ms
114,816 KB
testcase_29 TLE -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def decompose_all(S,l=0):
  # (str,int)->hydra,int
  # 次に見るところを返す
  ret=[]
  while l<len(S) and S[l]=="(":
    h,l=decompose_all(S,l+1)
    ret.append(h)
  return ret,l+1

def get_righttop(arr):
  # hydra -> hydra
  logright=arr[-1]
  if logright==[]: return [[]]
  logrightlogright=logright[-1]
  if logrightlogright==[]: return arr[-1:]
  return get_righttop(logright)

def process(arr):
  # hydra -> hydra
  logright=arr.pop()
  if logright==[]: return arr
  logrightlogright=logright[-1]
  if logrightlogright==[]:
    logright.pop()
    arr.append(logright)
    return arr
  arr.append(process(logright))
  return arr

def g(arr):
  # hydra -> int
  if arr==[]: return 0
  righttop=get_righttop(arr)
  if righttop==[[]]: return 1 if g(process(arr))==0 else 0
  if righttop==[[[]]]: return 3 if g(process(arr))==2 else 2
  return 1 if g(process(righttop))==0 else 0

import sys
sys.setrecursionlimit(10**9)

S=input()
print(0 if g(decompose_all(S)[0]) else 1)
0