結果

問題 No.457 (^^*)
ユーザー 12354865271235486527
提出日時 2019-12-21 14:25:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 659 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,348 KB
最終ジャッジ日時 2024-07-19 08:36:15
合計ジャッジ時間 3,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,360 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 33 ms
52,700 KB
testcase_03 AC 33 ms
52,904 KB
testcase_04 AC 35 ms
52,392 KB
testcase_05 AC 39 ms
52,168 KB
testcase_06 AC 34 ms
52,304 KB
testcase_07 AC 41 ms
62,920 KB
testcase_08 AC 49 ms
69,596 KB
testcase_09 AC 60 ms
75,104 KB
testcase_10 AC 93 ms
75,252 KB
testcase_11 AC 192 ms
75,664 KB
testcase_12 AC 457 ms
76,208 KB
testcase_13 AC 659 ms
75,944 KB
testcase_14 AC 37 ms
59,332 KB
testcase_15 AC 455 ms
76,348 KB
testcase_16 AC 649 ms
76,312 KB
testcase_17 AC 40 ms
59,876 KB
testcase_18 AC 34 ms
51,756 KB
testcase_19 AC 33 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
n = len(S)
l = r = 0
for i in range(n-4):
    if S[i] != '(':
        continue
    lf = rf = False
    lt = rt = ''
    for s in S[i+1:]:
        if s == ')':
            l += lf
            r += rf
        elif not lf & rf:
            if s == '*':
                if lt == '^^':
                    lf = True
                if rt == '':
                    rt += s
            elif s == '^':
                if lt == '' or lt == '^':
                    lt += s
                if rt == '*':
                    rt += s
                elif rt == '*^':
                    rf = True
print(l, r)
0