結果

問題 No.2539 スライムゲーム
ユーザー 👑 p-adicp-adic
提出日時 2023-09-28 08:41:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 1,000 ms
コード長 356 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 76,068 KB
最終ジャッジ日時 2024-09-26 00:52:27
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
51,968 KB
testcase_02 AC 42 ms
51,712 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 43 ms
52,096 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 44 ms
51,968 KB
testcase_07 AC 43 ms
51,840 KB
testcase_08 AC 43 ms
51,968 KB
testcase_09 AC 40 ms
52,224 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 41 ms
51,712 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 42 ms
52,352 KB
testcase_19 AC 43 ms
51,712 KB
testcase_20 AC 41 ms
52,096 KB
testcase_21 AC 45 ms
58,240 KB
testcase_22 AC 46 ms
58,240 KB
testcase_23 AC 41 ms
52,096 KB
testcase_24 AC 48 ms
58,240 KB
testcase_25 AC 40 ms
52,480 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 41 ms
51,840 KB
testcase_28 AC 82 ms
76,068 KB
testcase_29 AC 82 ms
75,904 KB
testcase_30 AC 59 ms
67,456 KB
testcase_31 AC 41 ms
52,480 KB
testcase_32 AC 47 ms
60,928 KB
testcase_33 AC 54 ms
75,060 KB
testcase_34 AC 76 ms
75,776 KB
testcase_35 AC 41 ms
52,400 KB
testcase_36 AC 87 ms
75,904 KB
testcase_37 AC 90 ms
76,060 KB
testcase_38 AC 62 ms
68,352 KB
testcase_39 AC 64 ms
68,608 KB
testcase_40 AC 64 ms
68,736 KB
testcase_41 AC 64 ms
68,608 KB
testcase_42 AC 61 ms
68,352 KB
testcase_43 AC 58 ms
68,096 KB
testcase_44 AC 58 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()
def H(l,r,M):
	a=0
	while l<r:
		if M<1:return -1
		f,d=0,1
		if S[r-1]>'(':
			for m in range(r-2,l-1,-1):
				d+=(S[m]>'(')*2-1
				if d<1:
					e,p=0,1
					while p*2<=M:p,e=p*2,e+1
					e,r,f=H(m+1,r-1,e),m,1
					if e<0:return e
					a,M=a+(1<<e),M-(1<<e)
					break
		if f<1:return a+1
	return a
a=H(0,len(S),10**18)
print([a,"INFTY"][a<0])
0