結果

問題 No.457 (^^*)
ユーザー roarisroaris
提出日時 2019-12-14 18:16:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,368 KB
最終ジャッジ日時 2024-06-28 03:19:08
合計ジャッジ時間 2,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,560 KB
testcase_01 AC 37 ms
53,108 KB
testcase_02 AC 37 ms
53,172 KB
testcase_03 AC 37 ms
52,556 KB
testcase_04 AC 38 ms
52,280 KB
testcase_05 AC 37 ms
52,524 KB
testcase_06 AC 38 ms
53,752 KB
testcase_07 AC 44 ms
58,588 KB
testcase_08 AC 46 ms
60,488 KB
testcase_09 AC 53 ms
65,980 KB
testcase_10 AC 67 ms
73,256 KB
testcase_11 AC 73 ms
76,320 KB
testcase_12 AC 64 ms
75,536 KB
testcase_13 AC 43 ms
60,204 KB
testcase_14 AC 64 ms
75,756 KB
testcase_15 AC 68 ms
76,244 KB
testcase_16 AC 43 ms
59,868 KB
testcase_17 AC 68 ms
76,368 KB
testcase_18 AC 39 ms
53,420 KB
testcase_19 AC 38 ms
53,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

S = input()
l1, l2 = [], []
acc = [0]

for i in range(len(S)):
    if S[i]=='*':
        l1.append(i)
    elif S[i]=='^':
        l2.append(i)
    
    acc.append(acc[-1]+(1 if S[i]=='(' else 0))

ans_left, ans_right = 0, 0

for i in range(len(S)):
    if S[i]==')':
        idx = bisect_right(l1, i)-1
        
        if idx!=-1:
            p = l1[idx]
            idx = bisect_right(l2, p)-1
            
            if idx>=1:
                ans_left += acc[l2[idx-1]]
        
        idx = bisect_right(l2, i)-1

        if idx>=1:
            p = l2[idx-1]
            idx = bisect_right(l1, p)-1
            
            if idx!=-1:
                ans_right += acc[l1[idx]]

print(ans_left, ans_right)
0