結果

問題 No.457 (^^*)
ユーザー h_nosonh_noson
提出日時 2017-01-26 17:35:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 71,296 KB
最終ジャッジ日時 2024-06-06 00:58:35
合計ジャッジ時間 2,048 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 48 ms
61,696 KB
testcase_08 AC 52 ms
63,360 KB
testcase_09 AC 59 ms
65,408 KB
testcase_10 AC 90 ms
68,480 KB
testcase_11 AC 186 ms
71,296 KB
testcase_12 AC 47 ms
61,184 KB
testcase_13 AC 42 ms
57,856 KB
testcase_14 AC 45 ms
60,416 KB
testcase_15 AC 48 ms
61,568 KB
testcase_16 AC 41 ms
58,112 KB
testcase_17 AC 45 ms
60,416 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
left = "(^^*)"
right = "(*^^)"

ans = 0
i = 0
while i < len(s):
    if s[i] == '(':
        add = 0
        while i < len(s) and s[i] == '(':
            i += 1
            add += 1
        state = 1
        for j in range(i,len(s)):
            if state < len(left)-1 and s[j] == left[state]:
                state += 1
            elif s[j] == left[state]:
                ans += add
    i += 1
print(ans,end=" ")

ans = 0
i = 0
while i < len(s):
    if s[i] == '(':
        add = 0
        while i < len(s) and s[i] == '(':
            i += 1
            add += 1
        state = 1
        for j in range(i,len(s)):
            if state < len(right)-1 and s[j] == right[state]:
                state += 1
            elif s[j] == right[state]:
                ans += add
    i += 1
print(ans)
0