結果

問題 No.457 (^^*)
ユーザー flippergoflippergo
提出日時 2025-01-02 16:26:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,096 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 118,144 KB
最終ジャッジ日時 2025-01-02 16:26:31
合計ジャッジ時間 9,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,796 KB
testcase_01 AC 35 ms
58,976 KB
testcase_02 AC 33 ms
53,212 KB
testcase_03 AC 34 ms
53,080 KB
testcase_04 AC 35 ms
53,632 KB
testcase_05 AC 33 ms
52,936 KB
testcase_06 AC 34 ms
52,608 KB
testcase_07 AC 49 ms
63,744 KB
testcase_08 AC 60 ms
65,408 KB
testcase_09 AC 72 ms
68,992 KB
testcase_10 AC 153 ms
70,400 KB
testcase_11 AC 485 ms
70,912 KB
testcase_12 TLE -
testcase_13 AC 301 ms
66,048 KB
testcase_14 AC 48 ms
62,848 KB
testcase_15 TLE -
testcase_16 AC 300 ms
66,432 KB
testcase_17 AC 51 ms
62,976 KB
testcase_18 AC 34 ms
51,968 KB
testcase_19 AC 34 ms
118,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input().strip()
N = len(S)
S = "0"+S
A = [0]*(N+1)
B = [0]*(N+1)
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
    else:
        A[i] = A[i-1]
        B[i] = B[i-1]
ans1 = 0
ans2 = 0
for i in range(1,N-4+1):
    if S[i]=="(":
        for j in range(i+4,N+1):
            if S[j]==")":
                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