結果

問題 No.457 (^^*)
ユーザー titiatitia
提出日時 2023-08-10 01:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 67,968 KB
最終ジャッジ日時 2024-11-16 00:12:11
合計ジャッジ時間 3,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,456 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 53 ms
60,544 KB
testcase_09 AC 58 ms
64,256 KB
testcase_10 AC 64 ms
67,456 KB
testcase_11 AC 63 ms
67,712 KB
testcase_12 AC 379 ms
67,968 KB
testcase_13 AC 608 ms
66,176 KB
testcase_14 AC 46 ms
59,776 KB
testcase_15 AC 369 ms
67,328 KB
testcase_16 AC 612 ms
66,560 KB
testcase_17 AC 46 ms
60,160 KB
testcase_18 AC 38 ms
51,584 KB
testcase_19 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

LEFT=[0]*(len(S)+1)
RIGHT=[0]*(len(S)+1)

for i in range(len(S)):
    if S[i]=="(":
        LEFT[i]=LEFT[i-1]+1
    else:
        LEFT[i]=LEFT[i-1]

for i in range(len(S)-1,-1,-1):
    if S[i]==")":
        RIGHT[i]=RIGHT[i+1]+1
    else:
        RIGHT[i]=RIGHT[i+1]

ANSL=0
ANSR=0

for i in range(len(S)):
    if S[i]=="(":
        x=0

        for j in range(i+1,len(S)):
            if x==0 and S[j]=="*":
                x+=1
            elif 1<=x<=2 and S[j]=="^":
                x+=1

            if x==3:
                ANSR+=RIGHT[j]
                #print(i,j)
                break

        x=0
        for j in range(i+1,len(S)):
            if x<=1 and S[j]=="^":
                x+=1
            elif x==2 and S[j]=="*":
                x+=1

            if x==3:
                ANSL+=RIGHT[j]
                #print(i,j)
                break

print(ANSL,ANSR)
0