結果

問題 No.457 (^^*)
ユーザー flippergoflippergo
提出日時 2025-01-03 12:01:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 1,131 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2025-01-03 12:02:00
合計ジャッジ時間 2,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 42 ms
52,072 KB
testcase_02 AC 42 ms
52,468 KB
testcase_03 AC 44 ms
52,096 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 42 ms
52,352 KB
testcase_07 AC 53 ms
59,472 KB
testcase_08 AC 56 ms
60,416 KB
testcase_09 AC 78 ms
70,144 KB
testcase_10 AC 101 ms
76,672 KB
testcase_11 AC 105 ms
76,416 KB
testcase_12 AC 55 ms
61,664 KB
testcase_13 AC 54 ms
60,028 KB
testcase_14 AC 53 ms
59,856 KB
testcase_15 AC 56 ms
61,864 KB
testcase_16 AC 50 ms
60,032 KB
testcase_17 AC 49 ms
59,904 KB
testcase_18 AC 42 ms
52,608 KB
testcase_19 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_right
S = input().strip()
N = len(S)
S = "0"+S
A = []
B = []
L = [0]*(N+1)
R = [0]*(N+1)
for i in range(1,N+1):
    if S[i]=="^":
        A.append(i)
        L[i] = L[i-1]
        R[i] = R[i-1]
    elif S[i]=="*":
        B.append(i)
        L[i] = L[i-1]
        R[i] = R[i-1]
    elif S[i]=="(":
        L[i] = L[i-1]+1
        R[i] = R[i-1]
    elif S[i]==")":
        L[i] = L[i-1]
        R[i] = R[i-1]+1
ans1 = 0
pre1 = 0
cur1 = 0
ans2 = 0
pre2 = 0
cur2 = 0
for i in range(2,N-3+1):
    if S[i]=="^":
        cur1 = i
        ind = bisect_right(A,i)
        if ind==len(A):
            continue
        i1 = A[ind]
        ind1 = bisect_right(B,i1)
        if ind1==len(B):
            continue
        j = B[ind1]
        ans1 += (L[cur1]-L[pre1])*(R[N]-R[j])
        pre1 = cur1
    elif S[i]=="*":
        cur2 = i
        ind = bisect_right(A,i)
        if ind==len(A):
            continue
        j1 = A[ind]
        ind1 = bisect_right(A,j1)
        if ind1==len(A):
            continue
        j2 = A[ind1]
        ans2 += (L[cur2]-L[pre2])*(R[N]-R[j2])
        pre2 = cur2
print(ans1,ans2)
0