結果

問題 No.457 (^^*)
ユーザー flippergoflippergo
提出日時 2025-01-02 16:33:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,085 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 121,472 KB
最終ジャッジ日時 2025-01-02 16:33:15
合計ジャッジ時間 9,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,856 KB
testcase_01 AC 45 ms
121,472 KB
testcase_02 AC 48 ms
57,984 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 41 ms
52,480 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 41 ms
52,608 KB
testcase_07 AC 56 ms
62,848 KB
testcase_08 AC 72 ms
69,504 KB
testcase_09 AC 112 ms
74,844 KB
testcase_10 AC 182 ms
76,672 KB
testcase_11 AC 559 ms
76,284 KB
testcase_12 TLE -
testcase_13 AC 79 ms
72,192 KB
testcase_14 AC 56 ms
63,232 KB
testcase_15 TLE -
testcase_16 AC 63 ms
72,192 KB
testcase_17 AC 57 ms
64,256 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 39 ms
59,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
S = input().strip()
N = len(S)
S = "0"+S
A = [0]*(N+1)
B = [0]*(N+1)
L = []
R = []
for i in range(1,N+1):
    if S[i]=="^":
        A[i] = A[i-1]+1
        B[i] = B[i-1]
    elif S[i]=="*":
        A[i] = A[i-1]
        B[i] = B[i-1]+1
    elif S[i]=="(":
        A[i] = A[i-1]
        B[i] = B[i-1]
        L.append(i)
    elif S[i]==")":
        A[i] = A[i-1]
        B[i] = B[i-1]
        R.append(i)
ans1 = 0
ans2 = 0
for i in L:
    ind = bisect_right(R,i)
    for j1 in range(ind,len(R)):
        j = R[j1]
        high = j
        low = i
        while high-low>1:
            mid = (high+low)//2
            if A[mid]-A[i]>=2:
                high = mid
            else:
                low = mid
        if A[high]-A[i]>=2 and B[j]-B[high]>=1:
            ans1 += 1
        high = j
        low = i
        while high-low>1:
            mid = (high+low)//2
            if A[j]-A[mid]>=2:
                low = mid
            else:
                high = mid
        if A[j]-A[low]>=2 and B[low]-B[i]>=1:
            ans2 += 1
print(ans1,ans2)
0